Uses of Class
io.reactivex.rxjava3.subjects.AsyncSubject.AsyncDisposable
Packages that use AsyncSubject.AsyncDisposable
Package
Description
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 AsyncSubject.AsyncDisposable in io.reactivex.rxjava3.subjects
Fields in io.reactivex.rxjava3.subjects declared as AsyncSubject.AsyncDisposableModifier and TypeFieldDescription(package private) static final AsyncSubject.AsyncDisposable[]
AsyncSubject.EMPTY
(package private) static final AsyncSubject.AsyncDisposable[]
AsyncSubject.TERMINATED
Methods in io.reactivex.rxjava3.subjects with parameters of type AsyncSubject.AsyncDisposableModifier and TypeMethodDescription(package private) boolean
AsyncSubject.add
(AsyncSubject.AsyncDisposable<T> ps) Tries to add the given subscriber to the subscribers array atomically or returns false if the subject has terminated.(package private) void
AsyncSubject.remove
(AsyncSubject.AsyncDisposable<T> ps) Atomically removes the given subscriber if it is subscribed to the subject.