rx.lang.scala
Subscriptions are returned from all Observable.subscribe methods to allow unsubscribing.
Observable.subscribe
This interface is the equivalent of IDisposable in the .NET Rx implementation.
IDisposable
Checks if the subscription is unsubscribed.
Call this method to stop receiving notifications on the Observer that was registered when this Subscription was received.
Subscriptions are returned from all
Observable.subscribe
methods to allow unsubscribing.This interface is the equivalent of
IDisposable
in the .NET Rx implementation.