RxJava



Package rx.subjects

Class Summary
AsyncSubject<T> Subject that publishes only the last event to each Observer that has subscribed when the sequence completes.
BehaviorSubject<T> Subject that publishes the most recent and all subsequent events to each subscribed Observer.
PublishSubject<T> Subject that, once and Observer has subscribed, publishes all subsequent events to the subscriber.
ReplaySubject<T> Subject that retains all events and will replay them to an Observer that subscribes.
Subject<T,R>