edu.rice.cs.plt.lambda
Interface Runnable4<T1,T2,T3,T4>

Type Parameters:
T1 - the first argument type
T2 - the second argument type
T3 - the third argument type
T4 - the fourth argument type
All Known Subinterfaces:
LambdaUtil.GeneralRunnable

public interface Runnable4<T1,T2,T3,T4>

A quaternary lambda that doesn't have a return value (relying instead on side effects).

See Also:
Runnable, Runnable1, Runnable2, Runnable3, Lambda4

Method Summary
 void run(T1 arg1, T2 arg2, T3 arg3, T4 arg4)
           
 

Method Detail

run

void run(T1 arg1,
         T2 arg2,
         T3 arg3,
         T4 arg4)