Rx: get first item, but throw exception when the second item arrives

66 Views Asked by At

Using Rx observable stream, is there an effective way to get the first item, complete the source observable, but throw an exception if the second item arrives? Sounds like not a good situation to use Rx for, but is there a clever way to handle it?

1

There are 1 best solutions below

0
On

As far as I understand, this is a violation of the IObservable Contract, that clearly specifies that no extra items should arrive after either error or complete. So basically, you are checking for a situation that cannot (or should not) arise.