Package org.dmfs.jems2
Interface BiProcedure<Argument1,Argument2>
-
- All Superinterfaces:
FragileBiProcedure<Argument1,Argument2,java.lang.RuntimeException>
public interface BiProcedure<Argument1,Argument2> extends FragileBiProcedure<Argument1,Argument2,java.lang.RuntimeException>
Functional interface for a void function taking two arguments.- See Also:
FragileBiProcedure,Procedure
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(Argument1 argument1, Argument2 argument2)Executes the procedure with the given arguments.
-