eneter.net.system
Interface IMethod1<T>

Type Parameters:
T - type of the input parameter.

public interface IMethod1<T>

Callback method taking one input parameter of desired type and returning void. It is the equivalent of .NET Action.


Method Summary
 void invoke(T t)
          Callback method.
 

Method Detail

invoke

void invoke(T t)
            throws java.lang.Exception
Callback method.

Parameters:
t - input parameter passing to the callback method.
Throws:
java.lang.Exception - Implementation of the method is allowed to throw an exception.