Uses of Class
rx.subjects.Subject
-
Packages that use Subject Package Description rx.internal.operators Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.rx.subjects Classes extending the Observable base reactive class and implementing the Observer interface at the same time (aka hot Observables). -
-
Uses of Subject in rx.internal.operators
Subclasses of Subject in rx.internal.operators Modifier and Type Class Description classBufferUntilSubscriber<T>A solution to the "time gap" problem that occurs withgroupByandpivot.Fields in rx.internal.operators declared as Subject Modifier and Type Field Description (package private) Subject<T,T>OperatorWindowWithSize.WindowExact. window(package private) Subject<T,T>OperatorWindowWithSize.WindowSkip. windowFields in rx.internal.operators with type parameters of type Subject Modifier and Type Field Description (package private) java.util.concurrent.atomic.AtomicReference<Subject<? super T,? extends R>>OperatorMulticast. connectedSubject(package private) java.util.Queue<Subject<T,T>>OperatorWindowWithSize.WindowOverlap. queue(package private) Func0<? extends Subject<? super T,? extends R>>OperatorMulticast. subjectFactory(package private) java.util.ArrayDeque<Subject<T,T>>OperatorWindowWithSize.WindowOverlap. windowsMethod parameters in rx.internal.operators with type arguments of type Subject Modifier and Type Method Description (package private) booleanOperatorWindowWithSize.WindowOverlap. checkTerminated(boolean d, boolean empty, Subscriber<? super Subject<T,T>> a, java.util.Queue<Subject<T,T>> q)(package private) booleanOperatorWindowWithSize.WindowOverlap. checkTerminated(boolean d, boolean empty, Subscriber<? super Subject<T,T>> a, java.util.Queue<Subject<T,T>> q)Constructor parameters in rx.internal.operators with type arguments of type Subject Constructor Description OperatorMulticast(java.lang.Object guard, java.util.concurrent.atomic.AtomicReference<Subject<? super T,? extends R>> connectedSubject, java.util.List<Subscriber<? super R>> waitingForConnect, Observable<? extends T> source, Func0<? extends Subject<? super T,? extends R>> subjectFactory)OperatorMulticast(java.lang.Object guard, java.util.concurrent.atomic.AtomicReference<Subject<? super T,? extends R>> connectedSubject, java.util.List<Subscriber<? super R>> waitingForConnect, Observable<? extends T> source, Func0<? extends Subject<? super T,? extends R>> subjectFactory)OperatorMulticast(Observable<? extends T> source, Func0<? extends Subject<? super T,? extends R>> subjectFactory) -
Uses of Subject in rx.subjects
Subclasses of Subject in rx.subjects Modifier and Type Class Description classAsyncSubject<T>Subject that publishes only the last item observed to eachObserveronce the sourceObservablehas completed.classBehaviorSubject<T>Subject that emits the most recent item it has observed and all subsequent observed items to each subscribedObserver.classPublishSubject<T>Subject that, once anObserverhas subscribed, emits all subsequently observed items to the subscriber.classReplaySubject<T>Subject that buffers all items it observes and replays them to anyObserverthat subscribes.classSerializedSubject<T,R>Wraps aSubjectso that it is safe to call its variousonmethods from different threads.classTestSubject<T>A variety of Subject that is useful for testing purposes.classUnicastSubject<T>A Subject variant which buffers events until a single Subscriber arrives and replays them to it and potentially switches to direct delivery once the Subscriber caught up and requested an unlimited amount.Fields in rx.subjects declared as Subject Modifier and Type Field Description private Subject<T,R>SerializedSubject. actualConstructors in rx.subjects with parameters of type Subject Constructor Description SerializedSubject(Subject<T,R> actual)
-