Package com.nt.udc.util.state
Interface IntegerCallback
- All Known Implementing Classes:
AsynchronousStateSaver
,StateFreezer
public interface IntegerCallback
This interface's implementation is passed into the receiving
Object and is used as a notification that the receiving
Object has performed a certain event, defined by the integer callback
value.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
callback
(int callbackvalue) This method is called when the receiving Object has performed a certain event, as defined by the integer value, and wants to notify the implementor that the event has occurred.
-
Method Details
-
callback
void callback(int callbackvalue) This method is called when the receiving Object has performed a certain event, as defined by the integer value, and wants to notify the implementor that the event has occurred. Typically, the callback value is part of a well-defined enumeration that both the receiver and implementor have access to.
-