Package reactor.fn

Interface Consumer<T>

  • Type Parameters:
    T - the type of values to accept

    @Deprecated
    public interface Consumer<T>
    Deprecated.
    Here for compatibility only. Do not use directly
    Implementations accept a given value and perform work on the argument.
    • Method Detail

      • accept

        void accept​(T t)
        Deprecated.
        Execute the logic of the action, accepting the given parameter.
        Parameters:
        t - The parameter to pass to the consumer.