Interface Watcher<T>
- All Known Implementing Classes:
LongPollReadEntryProcessorV3
public interface Watcher<T>
A class can implement the
Watcher interface when it
wants to be informed of one-time changes in watchable objects.-
Method Summary
-
Method Details
-
update
This method is called whenever the watched object is changed. An application calls an Watchable object'snotifyWatchersmethod to have all the object's watchers notified of the change.- Parameters:
value- the updated value of a watchable
-