Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Current.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 
14 #include <Ice/ObjectAdapterF.ice>
15 #include <Ice/ConnectionF.ice>
16 #include <Ice/Identity.ice>
17 #include <Ice/Version.ice>
18 
19 ["objc:prefix:ICE"]
20 module Ice
21 {
22 
31 dictionary<string, string> Context;
32 
38 //
39 // Note: The order of definitions here *must* match the order of
40 // definitions for ::Slice::Operation::Mode in include/Slice/Parser.h!
41 //
43 {
52 
69 
81 };
82 
91 local struct Current
92 {
99 
108 
115 
121  string facet;
122 
128  string operation;
129 
136 
143 
150 
157 };
158 
159 };
160 
Information about the current method invocation for servers.
Definition: Current.ice:91
ObjectAdapter adapter
The object adapter.
Definition: Current.ice:98
int requestId
The request id unless oneway (0) or collocated (-1).
Definition: Current.ice:149
The Ice core library.
Definition: BuiltinSequences.ice:15
OperationMode
Determines the retry behavior of an invocation in case of a (potentially) recoverable error...
Definition: Current.ice:42
Connection con
Information about the connection over which the current method invocation was received.
Definition: Current.ice:107
The identity of an Ice object.
Definition: Identity.ice:28
The user-level interface to a connection.
Definition: Connection.ice:151
Identity id
The Ice object identity.
Definition: Current.ice:114
string operation
The operation name.
Definition: Current.ice:128
A version structure for the encoding version.
Definition: Version.ice:34
Ordinary operations have Normal mode.
Definition: Current.ice:51
Context ctx
The request context, as received from the client.
Definition: Current.ice:142
Operations that use the Slice idempotent keyword can modify object state, but invoking an operation t...
Definition: Current.ice:80
string facet
The facet.
Definition: Current.ice:121
Operations that use the Slice nonmutating keyword must not modify object state.
Definition: Current.ice:68
OperationMode mode
The mode of the operation.
Definition: Current.ice:135
The object adapter provides an up-call interface from the Ice run time to the implementation of Ice o...
Definition: ObjectAdapter.ice:38
dictionary< string, string > Context
A request context.
Definition: Current.ice:31
EncodingVersion encoding
The encoding version used to encode the input and output parameters.
Definition: Current.ice:156