Package org.dmfs.jems2
Interface Procedure<T>
-
- All Superinterfaces:
FragileProcedure<T,java.lang.RuntimeException>
- All Known Implementing Classes:
Batch,Composite,Conditional,ForEach
public interface Procedure<T> extends FragileProcedure<T,java.lang.RuntimeException>
Functional interface for a void function taking one argument.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(T arg)Executes the procedure with the given argument.
-
-
-
Method Detail
-
process
void process(T arg)
Executes the procedure with the given argument.- Specified by:
processin interfaceFragileProcedure<T,java.lang.RuntimeException>
-
-