I want to "throw" custom error if an Observable
does not emit exactly one value before completing.
Let me try to show an example:
Observable<SomeClass> stream = ...
stream
.filter(...)
.singleOrError(new MyCustomException())
So I have a stream of SomeClass objects. I want to emit custom error if fitler()
does not emit exactly one element.
Since
.singleOrError()
throwsNoSuchElementException
if the source emits no items, you can check instance of thrown exception and return your custom one.Note that if the
filter()
emits more than one item,singleOrError()
will throwIllegalArgumentException
. This can either be handled in theonErrorResumeNext()
, or by simply addingtake(1)
beforesingleOrError()
.