I need an operator that errors an observable if mo...
# rx
g
I need an operator that errors an observable if more than one event is emitted within a time period. Something like
throttleFirst
that errors instead of filtering. I'm looking at
singleOrError
but I need something to complete the stream after "X time period" after the first emission Any ideas?