Ice 3.6 Slice API Reference
|
A session object is used by IceGrid clients to allocate and release objects. More...
Defined in <IceGrid/Session.ice>
interface Session extends Glacier2::Session { ... }
Operations | |
Object * | allocateObjectById (Ice::Identity id) throws ObjectNotRegisteredException, AllocationException |
Allocate an object. More... | |
Object * | allocateObjectByType (string type) throws AllocationException |
Allocate an object with the given type. More... | |
idempotent void | keepAlive () |
Keep the session alive. More... | |
void | releaseObject (Ice::Identity id) throws ObjectNotRegisteredException, AllocationException |
Release an object that was allocated using allocateObjectById or allocateObjectByType . More... | |
idempotent void | setAllocationTimeout (int timeout) |
Set the allocation timeout. More... | |
![]() | |
void | destroy () |
Destroy the session. More... | |
A session object is used by IceGrid clients to allocate and release objects.
Client sessions are either created with the Registry object or the registry client Glacier2.SessionManager object.
Object* allocateObjectById | ( | Ice::Identity | id | ) | throws ObjectNotRegisteredException, AllocationException |
Allocate an object.
Depending on the allocation timeout, this operation might hang until the object is available or until the timeout is reached.
id | The identity of the object to allocate. |
ObjectNotRegisteredException | Raised if the object with the given identity is not registered with the registry. |
AllocationException | Raised if the object can't be allocated. |
Object* allocateObjectByType | ( | string | type | ) | throws AllocationException |
Allocate an object with the given type.
Depending on the allocation timeout, this operation can block until an object becomes available or until the timeout is reached.
type | The type of the object. |
ObjectNotRegisteredException | Raised if no objects with the given type can be allocated. |
AllocationException | Raised if the object could not be allocated. |
idempotent void keepAlive | ( | ) |
Keep the session alive.
Clients should call this operation regularly to prevent the server from reaping the session.
void releaseObject | ( | Ice::Identity | id | ) | throws ObjectNotRegisteredException, AllocationException |
Release an object that was allocated using allocateObjectById
or allocateObjectByType
.
id | The identity of the object to release. |
ObjectNotRegisteredException | Raised if the object with the given identity is not registered with the registry. |
AllocationException | Raised if the given object can't be released. This might happen if the object isn't allocatable or isn't allocated by the session. |
idempotent void setAllocationTimeout | ( | int | timeout | ) |
Set the allocation timeout.
If no objects are available for an allocation request, a call to allocateObjectById
or allocateObjectByType
will block for the duration of this timeout.
timeout | The timeout in milliseconds. |