Event Dispatcher
v0.1.6-beta.1
Project that offers a small library that allows to subscribe and fire events.
|
The listener interface for receiving value change events.
This is a functional interface whose functional method is onValueChanged.
<T> | the type of the variable that is being listened to |
Definition at line 11 of file ValueChangeListener.java.
Public Member Functions | |
void | onValueChanged (T oldValue, T value) |
void onValueChanged | ( | T | oldValue, |
T | value | ||
) |
Function called when the listened to variable value change.
oldValue | the old value of the variable |
value | the new value of the variable |