Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Znav
nextIceGrid-ObserverAlreadyRegisteredException
prevIceGrid-ObjectNotRegisteredException
Section


IceGrid::ObjectObserver

Overview

interface ObjectObserver

This interface allows applications to monitor IceGrid well-known objects.

Operation Index

objectInitobjectInit is called after the registration of an observer to indicate the state of the registry.
objectAdded — The objectAdded operation is called to notify an observer when an object was added to the IceGrid::Admin interface.
objectUpdatedobjectUpdated is called to notify an observer when an object registered with the IceGrid::Admin interface was updated.
objectRemovedobjectRemoved is called to notify an observer when an object registered with the IceGrid::Admin interface was removed.

Ztop

Operations

void
Anchor
objectInit
objectInit
objectInit(IceGrid::ObjectInfoSeq objects)

objectInit is called after the registration of an observer to indicate the state of the registry.

Parameters

objects — The objects registered with the IceGrid::Admin interface (not through the deployment mechanism).

void
Anchor
objectAdded
objectAdded
objectAdded(IceGrid::ObjectInfo info)

The objectAdded operation is called to notify an observer when an object was added to the IceGrid::Admin interface.

Parameters

info — The details of the added object.

void
Anchor
objectUpdated
objectUpdated
objectUpdated(IceGrid::ObjectInfo info)

objectUpdated is called to notify an observer when an object registered with the IceGrid::Admin interface was updated.

Parameters

info — The details of the updated object.

void
Anchor
objectRemoved
objectRemoved
objectRemoved(Ice::Identity id)

objectRemoved is called to notify an observer when an object registered with the IceGrid::Admin interface was removed.

Parameters

id — The identity of the removed object.

Ztop

Znav
nextIceGrid-ObserverAlreadyRegisteredException
prevIceGrid-ObjectNotRegisteredException
Section