interface Query |
The IcePack query interface. This interface is accessible to Ice clients who wish to lookup objects.
Find all the objects with the given type.
Find an object by identity.
Find an object by type.
::Ice::ObjectProxySeq findAllObjectsWithType(string type) throws ObjectNotExistException; |
Find all the objects with the given type.
Raised if no objects can be found.
Object* findObjectById(::Ice::Identity id) throws ObjectNotExistException; |
Find an object by identity.
Raised if no objects can be found.
Object* findObjectByType(string type) throws ObjectNotExistException; |
Find an object by type.
Raised if no objects can be found.
<<< Previous | Home | Next >>> |
IcePack::PropertyDescriptor | Up | IcePack::ServerActivation |