MCPcopy Index your code
hub / github.com/ReactiveX/RxJava / subscribeActual

Method subscribeActual

src/main/java/io/reactivex/rxjava3/core/Maybe.java:5395–5395  ·  view source on GitHub ↗

Implement this method in subclasses to handle the incoming MaybeObservers. There is no need to call any of the plugin hooks on the current Maybe instance or the MaybeObserver; all hooks and basic safeguards have been applied by #subscribe(MaybeObserver) before this

(@NonNull MaybeObserver<? super T> observer)

Source from the content-addressed store, hash-verified

5393 * @param observer the {@code MaybeObserver} to handle, not {@code null}
5394 */
5395 protected abstract void subscribeActual(@NonNull MaybeObserver<? super T> observer);
5396
5397 /**
5398 * Asynchronously subscribes subscribers to this {@code Maybe} on the specified {@link Scheduler}.

Callers 1

subscribeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected