| org.continuent.sequoia.driver.ControllerStateChangedCallback
All known Subclasses: org.continuent.sequoia.driver.SocketKillerCallBack,
ControllerStateChangedCallback | public interface ControllerStateChangedCallback (Code) | | Provides the two methods that will be called when a controller is detected as
failed (does not respond to pings anymore) or as back alive (responds to
pings again after silence). Note that the processing time of these
two methods implementation is critical: if needed, thread them!
author: Gilles Rayrat version: 1.0 |
onControllerDown | void onControllerDown(ControllerInfo ctrl)(Code) | | What to do when a controller stops responding to pings?
Warning: execution time is critical here, if the method's implementation is
too slow, thread it!
|
onControllerUp | void onControllerUp(ControllerInfo ctrl)(Code) | | What to do when a controller responds again to pings after having been
detected as failed
Warning: execution time is critical here, if the method's implementation is
too slow, thread it!
|
|
|