T - The type of the parameter that should be returned to the the
method interruptFired(int, Object)public interface InterruptHandlerFunction<T> extends InterruptJNI.InterruptJNIHandlerFunction
| Modifier and Type | Method and Description |
|---|---|
default void |
apply(int mask,
java.lang.Object param) |
default T |
getParameter()
Parameter to be passed with the interrupt when called.
|
void |
interruptFired(int mask,
T param)
This method is run every time an interrupt is fired.
|
default void apply(int mask,
java.lang.Object param)
apply in interface InterruptJNI.InterruptJNIHandlerFunctionvoid interruptFired(int mask,
T param)
mask - ??? What is this?param - an argument that can be overidden by overriding the getParameter()
methoddefault T getParameter()