Ice Reference Documentation | ||
---|---|---|
<<< Previous | Slice Documentation | Next >>> |
interface |
The node observer interface. Observers should implement this interface to receive information about the state of the IceGrid nodes.
The init method is called after the registration of the observer to communicate the current state of the node to the observer implementation.
The nodeDown method is called to notify the observer that a node went down.
The nodeUp method is called to notify the observer that a node came up.
The updateAdapter method is called to notify the observer that the state of an adapter changed.
The updateServer method is called to notify the observer that the state of a server changed.
[ "ami" ] void init(NodeDynamicInfoSeq nodes); |
The init method is called after the registration of the observer to communicate the current state of the node to the observer implementation.
The current state of the nodes.
void nodeDown(string name); |
The nodeDown method is called to notify the observer that a node went down.
The node name.
void nodeUp( |
The nodeUp method is called to notify the observer that a node came up.
The node state.
void updateAdapter(string node,
|
The updateAdapter method is called to notify the observer that the state of an adapter changed.
The node hosting the adapter.
The new adapter state.
void updateServer(string node,
|
The updateServer method is called to notify the observer that the state of a server changed.
The node hosting the server.
The new server state.
<<< Previous | Home | Next >>> |
IceGrid::NodeNotExistException | Up | IceGrid::NodeUnreachableException |