C
- The callback type.T
- The notification sender type. Typically this is the containing class.A
- An opaque argument to pass to the notifierpublic abstract static class CallbackRegistry.NotifierCallback<C,T,A>
extends java.lang.Object
Constructor and Description |
---|
NotifierCallback() |
Modifier and Type | Method and Description |
---|---|
abstract void |
onNotifyCallback(C callback,
T sender,
int arg,
A arg2)
Called by CallbackRegistry during
CallbackRegistry.notifyCallbacks(Object, int, Object) } to notify the callback. |
public abstract void onNotifyCallback(C callback, T sender, int arg, A arg2)
CallbackRegistry.notifyCallbacks(Object, int, Object)
} to notify the callback.callback
- The callback to notify.sender
- The opaque sender object.arg
- The opaque notification parameter.arg2
- An opaque argument passed in
CallbackRegistry.notifyCallbacks(T, int, A)
CallbackRegistry.CallbackRegistry(CallbackRegistry.NotifierCallback)