Class ObservableIgnoreElementsCompletable<T>

java.lang.Object
io.reactivex.rxjava3.core.Completable
io.reactivex.rxjava3.internal.operators.observable.ObservableIgnoreElementsCompletable<T>
All Implemented Interfaces:
CompletableSource, FuseToObservable<T>

public final class ObservableIgnoreElementsCompletable<T> extends Completable implements FuseToObservable<T>
  • Field Details

  • Constructor Details

    • ObservableIgnoreElementsCompletable

      public ObservableIgnoreElementsCompletable(ObservableSource<T> source)
  • Method Details

    • subscribeActual

      public void subscribeActual(CompletableObserver t)
      Description copied from class: Completable
      Implement this method to handle the incoming CompletableObservers and perform the business logic in your operator.

      There is no need to call any of the plugin hooks on the current Completable instance or the CompletableObserver; all hooks and basic safeguards have been applied by Completable.subscribe(CompletableObserver) before this method gets called.

      Specified by:
      subscribeActual in class Completable
      Parameters:
      t - the CompletableObserver instance, never null
    • fuseToObservable

      public Observable<T> fuseToObservable()
      Description copied from interface: FuseToObservable
      Returns a (direct) Observable for the operator.

      The implementation should handle the necessary RxJavaPlugins wrapping.

      Specified by:
      fuseToObservable in interface FuseToObservable<T>
      Returns:
      the Observable instance