net.sf.staccatocommons.defs
Interface Executable3<T1,T2,T3>

Type Parameters:
T1 - first computation argument type
T2 - second computation argument type
T3 - third computation argument type

@Applicative
public interface Executable3<T1,T2,T3>

Executable3s are computations that take three arguments and whose result is a side effect, instead of a return value.

Executable3 has the same semantics that an Applicable3 of Void return type, but is provided for ease of coding. Concrete implementors should implement Applicable3 as well.

Author:
flbulgarelli
See Also:
Recomendations for implementing

Method Summary
 void exec(T1 arg0, T2 arg1, T3 arg2)
          Performing a side-effect computation.
 

Method Detail

exec

void exec(T1 arg0,
          T2 arg1,
          T3 arg2)
Performing a side-effect computation.

Parameters:
arg0 -
arg1 -
arg2 -
See Also:
Executable.exec(Object)


Get Staccatocommons at SourceForge.net. Fast, secure and Free Open Source software downloads