public static interface DOF.Runtime.ServerStateListener
Modifier and Type | Method and Description |
---|---|
void |
removed(DOF.Runtime runtime,
DOFException exception)
Called when this listener is removed from the DOF.Runtime, either through use of
DOF.Runtime.removeServerListener(org.opendof.core.oal.DOF.Runtime.ServerStateListener)
or because an exception caused the listener to be removed. |
void |
stateChanged(DOF.Runtime runtime,
DOFServer server,
DOFServer.State state)
Called whenever the
DOFServer.State.isStarted() value changes for any of the DOF's servers. |
void stateChanged(DOF.Runtime runtime, DOFServer server, DOFServer.State state)
DOFServer.State.isStarted()
value changes for any of the DOF's servers.
This method is called immediately for all servers when the listener is added, and then will be called whenever a server's
started state changes. For each server, the library guarantees that calls to this method will occur in the same order
as the associated state change, so that, for example, if a server rapidly starts and then stops, you won't mistakenly
receive the stop notification before the start notification.runtime
- The runtime instance associated with this listener. This will never be null.server
- The DOFServer
that changed state. This will never be null.state
- The updated state of the server. This will never be null.void removed(DOF.Runtime runtime, DOFException exception)
DOF.Runtime.removeServerListener(org.opendof.core.oal.DOF.Runtime.ServerStateListener)
or because an exception caused the listener to be removed. Use this method to free any resources
allocated in association with this listener. After this method is called, the listener will no longer be called.
You may leave this method empty to ignore notification of removal.runtime
- The runtime instance associated with this listener. This will never be null.exception
- The exception that caused this listener to be removed. This will be null if the listener was removed normally.