Class | Description |
---|---|
DisposeBag |
A simple system for tearing down subscriptions in a memory efficient and re-usable manner
DisposeBag allows you to add as many subscriptions as you like, perform you can call disposeAll() to unsubscribe
all added subscriptions.
|
ObservableBuilder<T> |
A builder to build up an Observable that performs a set of events on it's Subscribers
This is the unsafe builder, meant for testing odd circumstances and working with Observables
that don't follow the strict contract.
|
UnsafeObservableBuilder<T> |
A builder to build up an Observable that performs a set of events on it's Subscribers
This is the unsafe builder, meant for testing odd circumstances and working with Observables
that don't follow the strict contract.
|