Interface | Description |
---|---|
Event<T> |
Event mechanism like in C#.
|
EventHandler<T> |
Event handler to process events.
|
IFunction<R> |
Callback function returning the type R.
|
IFunction1<R,T> |
Callback function taking one input parameter of type T and returning the type R.
|
IMethod1<T> |
Callback method taking one input parameter of desired type and returning void.
|
Class | Description |
---|---|
EventArgs |
Default EventArgs like in .NET.
|
EventImpl<T> |
Implements event similar way as in .NET.
The class is intended to be used by a class that wants to raise events. |