Class AbstractSubscription<T>

    • Method Detail

      • addSuccess

        protected abstract void addSuccess​(T success)
        Adds the success.
        Parameters:
        success - Success.
      • getNextFunctionArgument

        protected abstract java.lang.Object getNextFunctionArgument()
        Obtains the next ManagedFunction argument.
        Returns:
        Next ManagedFunction argument.
      • getSuccess

        public java.util.function.Consumer<? super T> getSuccess()
        Obtains the success Consumer.
        Returns:
        Success Consumer.
      • getError

        public java.util.function.Consumer<? super java.lang.Throwable> getError()
        Obtain the error Consumer.
        Returns:
        Error Consumer.
      • getCompletion

        public java.lang.Runnable getCompletion()
        Obtains the completion.
        Returns:
        Completion.