Ice Reference Documentation | ||
---|---|---|
<<< Previous | Slice Documentation | Next >>> |
[ "ami", "amd" ]
interface |
The IceGrid query interface. This interface is accessible to Ice clients who wish to lookup well-known objects.
Find a well-known object by identity.
Find a well-known object by type.
Find a well-known object by type on the least loaded node.
Find all the well-known objects with the given type.
Object* findObjectById( |
Find a well-known object by identity.
The identity.
The proxy or null if no such object has been found.
Object* findObjectByType(string type); |
Find a well-known object by type. If there are several objects registered for the given type, the object will be randomly selected.
The object type.
The proxy or null if no such object has been found.
Object* findObjectByTypeOnLeastLoadedNode(string type, LoadSample sample); |
Find a well-known object by type on the least loaded node. If the registry can't figure out the node that hosts the object (e.g., if the object was registered with a direct proxy), the registry assumes the object is hosted on a node that has a load average of 1.0.
The object type.
The proxy or null if no such object has been found.
::Ice::ObjectProxySeq findAllObjectsByType(string type); |
Find all the well-known objects with the given type.
The object type.
The proxies or an empty sequence if no such objects have been found.
<<< Previous | Home | Next >>> |
IceGrid::PropertySetDescriptor | Up | IceGrid::RandomLoadBalancingPolicy |