Uses of Class
io.reactivex.rxjava3.subjects.AsyncSubject.AsyncDisposable
-
Packages that use AsyncSubject.AsyncDisposable Package Description 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 AsyncSubject.AsyncDisposable in io.reactivex.rxjava3.subjects
Fields in io.reactivex.rxjava3.subjects declared as AsyncSubject.AsyncDisposable Modifier and Type Field Description (package private) static AsyncSubject.AsyncDisposable[]
AsyncSubject. EMPTY
(package private) static AsyncSubject.AsyncDisposable[]
AsyncSubject. TERMINATED
Methods in io.reactivex.rxjava3.subjects with parameters of type AsyncSubject.AsyncDisposable Modifier and Type Method Description (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.
-