The Observer from the Rx pattern is the trio of callbacks that get subscribed to an Observable for receiving events.
The Observer from the Rx pattern is the trio of callbacks that get subscribed to an Observable for receiving events.
The events received must follow the Rx grammar, which is: onNext * (onComplete | onError)?
That means an Observer can receive zero or multiple events, the stream
ending either in one or zero onComplete or onError (just one, not both),
and after onComplete or onError, a well behaved Observable
implementation shouldn't send any more onNext events.
- Companion
- object
trait Serializable
class Any
trait Sync[A]
trait Sync[A]
trait Subscriber[A]
trait BufferedSubscriber[A]
class CacheUntilConnectSubscriber[A]
class ConnectableSubscriber[A]
class SafeSubscriber[A]
class AsyncSubject[A]
class BehaviorSubject[A]
class PublishSubject[A]
class PublishToOneSubject[A]
class ReplaySubject[A]