Uses of Class
io.reactivex.rxjava3.subjects.PublishSubject
-
Packages that use PublishSubject Package Description io.reactivex.rxjava3.internal.operators.observable io.reactivex.rxjava3.subjects Classes representing so-called hot sources, aka subjects, that implement a base reactive class and the respective consumer type at once to allow forms of multicasting events to multiple consumers as well as consuming another base reactive type of their kind. -
-
Uses of PublishSubject in io.reactivex.rxjava3.internal.operators.observable
Fields in io.reactivex.rxjava3.internal.operators.observable declared as PublishSubject Modifier and Type Field Description (package private) PublishSubject<T>
ObservablePublishSelector.SourceObserver. subject
Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type PublishSubject Constructor Description SourceObserver(PublishSubject<T> subject, java.util.concurrent.atomic.AtomicReference<Disposable> target)
-
Uses of PublishSubject in io.reactivex.rxjava3.subjects
Fields in io.reactivex.rxjava3.subjects declared as PublishSubject Modifier and Type Field Description (package private) PublishSubject<T>
PublishSubject.PublishDisposable. parent
The subject state.Methods in io.reactivex.rxjava3.subjects that return PublishSubject Modifier and Type Method Description static <T> @NonNull PublishSubject<T>
PublishSubject. create()
Constructs a PublishSubject.Constructors in io.reactivex.rxjava3.subjects with parameters of type PublishSubject Constructor Description PublishDisposable(Observer<? super T> actual, PublishSubject<T> parent)
Constructs a PublishSubscriber, wraps the actual subscriber and the state.
-