Action2<T1,T2> Interface
Type Parameters
- T1
 The type of the first parameter to the callback.
- T2
 The type of the second parameter to the callback.
public interface Action2<T1,T2>
A callback that takes two parameters.
Method Summary
| Modifier and Type | Method and Description | 
|---|---|
| abstract void | invoke(T1 param1, T2 param2) | 
Method Details
invoke
public abstract void invoke(T1 param1, T2 param2)
Parameters: