Class FlowableInternalHelper.SubscriberOnComplete<T>

java.lang.Object
io.reactivex.rxjava3.internal.operators.flowable.FlowableInternalHelper.SubscriberOnComplete<T>
All Implemented Interfaces:
Action
Enclosing class:
FlowableInternalHelper

static final class FlowableInternalHelper.SubscriberOnComplete<T> extends Object implements Action
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) final org.reactivestreams.Subscriber<T>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    SubscriberOnComplete(org.reactivestreams.Subscriber<T> subscriber)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run()
    Runs the action and optionally throws a checked exception.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • subscriber

      final org.reactivestreams.Subscriber<T> subscriber
  • Constructor Details

    • SubscriberOnComplete

      SubscriberOnComplete(org.reactivestreams.Subscriber<T> subscriber)
  • Method Details

    • run

      public void run()
      Description copied from interface: Action
      Runs the action and optionally throws a checked exception.
      Specified by:
      run in interface Action