|
Ice 3.7 Slice API Reference
|
The node observer interface. More...
defined in <IceGrid/Admin.ice>
interface NodeObserver { ... }
Operations | |
| void | nodeDown (string name) |
The nodeDown operation is called to notify an observer that a node went down. More... | |
| void | nodeInit (NodeDynamicInfoSeq nodes) |
The nodeInit operation indicates the current state of nodes. More... | |
| void | nodeUp (NodeDynamicInfo node) |
The nodeUp operation is called to notify an observer that a node came up. More... | |
| void | updateAdapter (string node, AdapterDynamicInfo updatedInfo) |
The updateAdapter operation is called to notify an observer that the state of an adapter changed. More... | |
| void | updateServer (string node, ServerDynamicInfo updatedInfo) |
The updateServer operation is called to notify an observer that the state of a server changed. More... | |
The node observer interface.
Observers should implement this interface to receive information about the state of the IceGrid nodes.
| void nodeDown | ( | string | name | ) |
The nodeDown operation is called to notify an observer that a node went down.
| name | The node name. |
| void nodeInit | ( | NodeDynamicInfoSeq | nodes | ) |
The nodeInit operation indicates the current state of nodes.
It is called after the registration of an observer.
| nodes | The current state of the nodes. |
| void nodeUp | ( | NodeDynamicInfo | node | ) |
The nodeUp operation is called to notify an observer that a node came up.
| node | The node state. |
| void updateAdapter | ( | string | node, |
| AdapterDynamicInfo | updatedInfo | ||
| ) |
The updateAdapter operation is called to notify an observer that the state of an adapter changed.
| node | The node hosting the adapter. |
| updatedInfo | The new adapter state. |
| void updateServer | ( | string | node, |
| ServerDynamicInfo | updatedInfo | ||
| ) |
The updateServer operation is called to notify an observer that the state of a server changed.
| node | The node hosting the server. |
| updatedInfo | The new server state. |