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 directlyImplementations accept a given value and perform work on the argument.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaccept(T t)Deprecated.Execute the logic of the action, accepting the given parameter.
-
-
-
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.
-
-