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

Method toObservable

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

Converts this Maybe into an Observable instance composing disposal through. Scheduler: toObservable does not oper

()

Source from the content-addressed store, hash-verified

4541 * @return the new {@code Observable} instance
4542 */
4543 @SuppressWarnings("unchecked")
4544 @CheckReturnValue
4545 @SchedulerSupport(SchedulerSupport.NONE)
4546 @NonNull
4547 public final Observable<T> toObservable() {
4548 if (this instanceof FuseToObservable) {
4549 return ((FuseToObservable<T>)this).fuseToObservable();
4550 }
4551 return RxJavaPlugins.onAssembly(new MaybeToObservable<>(this));
4552 }
4553
4554 /**
4555 * Converts this {@code Maybe} into a {@link Single} instance composing disposal

Callers 15

startWithMethod · 0.95
setupMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45

Calls 2

onAssemblyMethod · 0.95
fuseToObservableMethod · 0.65

Tested by

no test coverage detected