Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Session.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
13 [["cpp:include:IceGrid/Config.h"]]
14 
15 #include <Glacier2/Session.ice>
16 #include <IceGrid/Exception.ice>
17 
18 ["objc:prefix:ICEGRID"]
19 module IceGrid
20 {
21 
33 interface Session extends Glacier2::Session
34 {
43  idempotent void keepAlive();
44 
65  ["amd"] Object* allocateObjectById(Ice::Identity id)
67 
86  ["amd"] Object* allocateObjectByType(string type)
87  throws AllocationException;
88 
104  void releaseObject(Ice::Identity id)
106 
117  idempotent void setAllocationTimeout(int timeout);
118 };
119 
120 };
121 
This exception is raised if the allocation of an object failed.
Definition: Exception.ice:305
The identity of an Ice object.
Definition: Identity.ice:28
A session object is used by IceGrid clients to allocate and release objects.
Definition: Session.ice:33
This exception is raised if an object is not registered.
Definition: Exception.ice:131
IceGrid is a server activation and deployment tool.
Definition: Admin.ice:24
A client-visible session object, which is tied to the lifecycle of a Router.
Definition: Session.ice:48