Ice 3.8
C++ API Reference
Loading...
Searching...
No Matches
Lookup.h
1// Copyright (c) ZeroC, Inc.
2
3// slice2cpp version 3.8.0-alpha.0
4// <auto-generated>Generated from Slice file 'Lookup.ice'.</auto-generated>
5// clang-format off
6
7#ifndef IceLocatorDiscovery_Lookup_h_
8#define IceLocatorDiscovery_Lookup_h_
9
11#include <Ice/Ice.h>
12#include <Ice/Locator.h>
13
14#ifndef ICE_DISABLE_VERSION
15# if ICE_INT_VERSION != 30850
16# error Ice version mismatch: an exact match is required for beta generated code
17# endif
18#endif
19
20// NOLINTBEGIN(modernize-concat-nested-namespaces)
21
22/// IceLocatorDiscovery is an Ice plug-in that enables the discovery of Ice locators (such as IceGrid) via UDP
23/// multicast.
25{
26 class LookupReplyPrx;
27
28 class LookupPrx;
29}
30
31namespace IceLocatorDiscovery
32{
33 /// Represents a callback object implemented by IceLocatorDiscovery clients. It allows IceLocatorDiscovery clients
34 /// to receive replies to LookupPrx requests.
35 /// @remarks The Slice compiler generated this proxy class from Slice interface `::IceLocatorDiscovery::LookupReply`.
36 /// @see LookupPrx
37 class LookupReplyPrx : public Ice::Proxy<LookupReplyPrx, Ice::ObjectPrx>
38 {
39 public:
40 /// Constructs a proxy from a Communicator and a proxy string.
41 /// @param communicator The communicator of the new proxy.
42 /// @param proxyString The proxy string to parse.
43 LookupReplyPrx(const Ice::CommunicatorPtr& communicator, std::string_view proxyString) : Ice::ObjectPrx{communicator, proxyString} {} // NOLINT(modernize-use-equals-default)
44
45 /// Copy constructor. Constructs with a copy of the contents of @p other.
46 /// @param other The proxy to copy from.
47 LookupReplyPrx(const LookupReplyPrx& other) noexcept : Ice::ObjectPrx{other} {} // NOLINT(modernize-use-equals-default)
48
49 /// Move constructor. Constructs a proxy with the contents of @p other using move semantics.
50 /// @param other The proxy to move from.
51 LookupReplyPrx(LookupReplyPrx&& other) noexcept : Ice::ObjectPrx{std::move(other)} {} // NOLINT(modernize-use-equals-default)
52
53 ~LookupReplyPrx() override;
54
55 /// Copy assignment operator. Replaces the contents of this proxy with a copy of the contents of @p rhs.
56 /// @param rhs The proxy to copy from.
57 /// @return A reference to this proxy.
59 {
60 if (this != &rhs)
61 {
63 }
64 return *this;
65 }
66
67 /// Move assignment operator. Replaces the contents of this proxy with the contents of @p rhs using move semantics.
68 /// @param rhs The proxy to move from.
70 {
71 if (this != &rhs)
72 {
73 Ice::ObjectPrx::operator=(std::move(rhs));
74 }
75 return *this;
76 }
77
78 /// Provides a reply to a ::IceLocatorDiscovery::LookupPrx::findLocator request.
79 /// @param prx The proxy of the locator.
80 /// @param context The request context.
81 void foundLocator(const std::optional<::Ice::LocatorPrx>& prx, const Ice::Context& context = Ice::noExplicitContext) const;
82
83 /// Provides a reply to a ::IceLocatorDiscovery::LookupPrx::findLocator request.
84 /// @param prx The proxy of the locator.
85 /// @param context The request context.
86 /// @return A future that becomes available when the invocation completes.
87 [[nodiscard]] std::future<void> foundLocatorAsync(const std::optional<::Ice::LocatorPrx>& prx, const Ice::Context& context = Ice::noExplicitContext) const;
88
89 /// Provides a reply to a ::IceLocatorDiscovery::LookupPrx::findLocator request.
90 /// @param prx The proxy of the locator.
91 /// @param response The response callback.
92 /// @param exception The exception callback.
93 /// @param sent The sent callback.
94 /// @param context The request context.
95 /// @return A function that can be called to cancel the invocation locally.
96 // NOLINTNEXTLINE(modernize-use-nodiscard)
97 std::function<void()> foundLocatorAsync(const std::optional<::Ice::LocatorPrx>& prx, std::function<void()> response, std::function<void(std::exception_ptr)> exception = nullptr, std::function<void(bool)> sent = nullptr, const Ice::Context& context = Ice::noExplicitContext) const;
98
99 /// @private
100 void _iceI_foundLocator(const std::shared_ptr<IceInternal::OutgoingAsyncT<void>>&, const std::optional<::Ice::LocatorPrx>&, const Ice::Context&) const;
101
102 /// Gets the type ID of the associated Slice interface.
103 /// @return The string `"::IceLocatorDiscovery::LookupReply"`.
104 static const char* ice_staticId() noexcept;
105
106 /// @private
107 static LookupReplyPrx _fromReference(IceInternal::ReferencePtr ref) { return LookupReplyPrx{std::move(ref)}; }
108
109 protected:
110 /// @private
111 LookupReplyPrx() = default;
112
113 /// @private
114 explicit LookupReplyPrx(IceInternal::ReferencePtr&& ref) : Ice::ObjectPrx{std::move(ref)}
115 {
116 }
117 };
118
119 /// Looks for a locator using UDP multicast.
120 /// @remarks This interface is implemented by Ice locator implementations and can be used by clients to find
121 /// available Ice locators on the network.
122 /// Ice locator implementations provide a well-known `Ice/LocatorLookup` object accessible through UDP multicast.
123 /// Clients typically make a multicast `findLocator` request to find the locator proxy.
124 ///
125 /// The Slice compiler generated this proxy class from Slice interface `::IceLocatorDiscovery::Lookup`.
126 /// @see LookupReplyPrx
127 class LookupPrx : public Ice::Proxy<LookupPrx, Ice::ObjectPrx>
128 {
129 public:
130 /// Constructs a proxy from a Communicator and a proxy string.
131 /// @param communicator The communicator of the new proxy.
132 /// @param proxyString The proxy string to parse.
133 LookupPrx(const Ice::CommunicatorPtr& communicator, std::string_view proxyString) : Ice::ObjectPrx{communicator, proxyString} {} // NOLINT(modernize-use-equals-default)
134
135 /// Copy constructor. Constructs with a copy of the contents of @p other.
136 /// @param other The proxy to copy from.
137 LookupPrx(const LookupPrx& other) noexcept : Ice::ObjectPrx{other} {} // NOLINT(modernize-use-equals-default)
138
139 /// Move constructor. Constructs a proxy with the contents of @p other using move semantics.
140 /// @param other The proxy to move from.
141 LookupPrx(LookupPrx&& other) noexcept : Ice::ObjectPrx{std::move(other)} {} // NOLINT(modernize-use-equals-default)
142
143 ~LookupPrx() override;
144
145 /// Copy assignment operator. Replaces the contents of this proxy with a copy of the contents of @p rhs.
146 /// @param rhs The proxy to copy from.
147 /// @return A reference to this proxy.
148 LookupPrx& operator=(const LookupPrx& rhs) noexcept
149 {
150 if (this != &rhs)
151 {
153 }
154 return *this;
155 }
156
157 /// Move assignment operator. Replaces the contents of this proxy with the contents of @p rhs using move semantics.
158 /// @param rhs The proxy to move from.
160 {
161 if (this != &rhs)
162 {
163 Ice::ObjectPrx::operator=(std::move(rhs));
164 }
165 return *this;
166 }
167
168 /// Finds a locator proxy with the given @p instanceName.
169 /// @param instanceName Restrict the search to Ice registries configured with the given instance name. If
170 /// empty, all the available registries will reply.
171 /// @param reply The reply object to use to send the reply.
172 /// @param context The request context.
173 void findLocator(std::string_view instanceName, const std::optional<LookupReplyPrx>& reply, const Ice::Context& context = Ice::noExplicitContext) const;
174
175 /// Finds a locator proxy with the given @p instanceName.
176 /// @param instanceName Restrict the search to Ice registries configured with the given instance name. If
177 /// empty, all the available registries will reply.
178 /// @param reply The reply object to use to send the reply.
179 /// @param context The request context.
180 /// @return A future that becomes available when the invocation completes.
181 [[nodiscard]] std::future<void> findLocatorAsync(std::string_view instanceName, const std::optional<LookupReplyPrx>& reply, const Ice::Context& context = Ice::noExplicitContext) const;
182
183 /// Finds a locator proxy with the given @p instanceName.
184 /// @param instanceName Restrict the search to Ice registries configured with the given instance name. If
185 /// empty, all the available registries will reply.
186 /// @param reply The reply object to use to send the reply.
187 /// @param response The response callback.
188 /// @param exception The exception callback.
189 /// @param sent The sent callback.
190 /// @param context The request context.
191 /// @return A function that can be called to cancel the invocation locally.
192 // NOLINTNEXTLINE(modernize-use-nodiscard)
193 std::function<void()> findLocatorAsync(std::string_view instanceName, const std::optional<LookupReplyPrx>& reply, std::function<void()> response, std::function<void(std::exception_ptr)> exception = nullptr, std::function<void(bool)> sent = nullptr, const Ice::Context& context = Ice::noExplicitContext) const;
194
195 /// @private
196 void _iceI_findLocator(const std::shared_ptr<IceInternal::OutgoingAsyncT<void>>&, std::string_view, const std::optional<LookupReplyPrx>&, const Ice::Context&) const;
197
198 /// Gets the type ID of the associated Slice interface.
199 /// @return The string `"::IceLocatorDiscovery::Lookup"`.
200 static const char* ice_staticId() noexcept;
201
202 /// @private
203 static LookupPrx _fromReference(IceInternal::ReferencePtr ref) { return LookupPrx{std::move(ref)}; }
204
205 protected:
206 /// @private
207 LookupPrx() = default;
208
209 /// @private
210 explicit LookupPrx(IceInternal::ReferencePtr&& ref) : Ice::ObjectPrx{std::move(ref)}
211 {
212 }
213 };
214}
215
216namespace IceLocatorDiscovery
217{
218 /// Represents a callback object implemented by IceLocatorDiscovery clients. It allows IceLocatorDiscovery clients
219 /// to receive replies to LookupPrx requests.
220 /// @remarks The Slice compiler generated this skeleton class from Slice interface `::IceLocatorDiscovery::LookupReply`.
221 /// @see LookupPrx
222 class LookupReply : public virtual Ice::Object
223 {
224 public:
225 /// The associated proxy type.
227
228 /// Dispatches an incoming request to one of the member functions of this generated class, based on the operation name carried by the request.
229 /// @param request The incoming request.
230 /// @param sendResponse The callback to send the response.
231 void dispatch(Ice::IncomingRequest& request, std::function<void(Ice::OutgoingResponse)> sendResponse) override;
232
233 [[nodiscard]] std::vector<std::string> ice_ids(const Ice::Current& current) const override;
234
235 [[nodiscard]] std::string ice_id(const Ice::Current& current) const override;
236
237 /// Provides a reply to a ::IceLocatorDiscovery::LookupPrx::findLocator request.
238 /// @param prx The proxy of the locator.
239 /// @param current The Current object of the incoming request.
240 virtual void foundLocator(std::optional<::Ice::LocatorPrx> prx, const Ice::Current& current) = 0;
241
242 /// @private
243 void _iceD_foundLocator(Ice::IncomingRequest&, std::function<void(Ice::OutgoingResponse)>);
244
245 /// Gets the type ID of the associated Slice interface.
246 /// @return The string `"::IceLocatorDiscovery::LookupReply"`.
247 static const char* ice_staticId() noexcept;
248 };
249
250 /// A shared pointer to a LookupReply.
251 using LookupReplyPtr = std::shared_ptr<LookupReply>;
252
253 /// Looks for a locator using UDP multicast.
254 /// @remarks This interface is implemented by Ice locator implementations and can be used by clients to find
255 /// available Ice locators on the network.
256 /// Ice locator implementations provide a well-known `Ice/LocatorLookup` object accessible through UDP multicast.
257 /// Clients typically make a multicast `findLocator` request to find the locator proxy.
258 ///
259 /// The Slice compiler generated this skeleton class from Slice interface `::IceLocatorDiscovery::Lookup`.
260 /// @see LookupReplyPrx
261 class Lookup : public virtual Ice::Object
262 {
263 public:
264 /// The associated proxy type.
266
267 /// Dispatches an incoming request to one of the member functions of this generated class, based on the operation name carried by the request.
268 /// @param request The incoming request.
269 /// @param sendResponse The callback to send the response.
270 void dispatch(Ice::IncomingRequest& request, std::function<void(Ice::OutgoingResponse)> sendResponse) override;
271
272 [[nodiscard]] std::vector<std::string> ice_ids(const Ice::Current& current) const override;
273
274 [[nodiscard]] std::string ice_id(const Ice::Current& current) const override;
275
276 /// Finds a locator proxy with the given @p instanceName.
277 /// @param instanceName Restrict the search to Ice registries configured with the given instance name. If
278 /// empty, all the available registries will reply.
279 /// @param reply The reply object to use to send the reply.
280 /// @param current The Current object of the incoming request.
281 virtual void findLocator(std::string instanceName, std::optional<LookupReplyPrx> reply, const Ice::Current& current) = 0;
282
283 /// @private
284 void _iceD_findLocator(Ice::IncomingRequest&, std::function<void(Ice::OutgoingResponse)>);
285
286 /// Gets the type ID of the associated Slice interface.
287 /// @return The string `"::IceLocatorDiscovery::Lookup"`.
288 static const char* ice_staticId() noexcept;
289 };
290
291 /// A shared pointer to a Lookup.
292 using LookupPtr = std::shared_ptr<Lookup>;
293}
294
295namespace IceLocatorDiscovery
296{
297 /// Represents a callback object implemented by IceLocatorDiscovery clients. It allows IceLocatorDiscovery clients
298 /// to receive replies to LookupPrx requests.
299 /// @remarks The Slice compiler generated this skeleton class from Slice interface `::IceLocatorDiscovery::LookupReply`.
300 /// @see LookupPrx
301 class AsyncLookupReply : public virtual Ice::Object
302 {
303 public:
304 /// The associated proxy type.
306
307 /// Dispatches an incoming request to one of the member functions of this generated class, based on the operation name carried by the request.
308 /// @param request The incoming request.
309 /// @param sendResponse The callback to send the response.
310 void dispatch(Ice::IncomingRequest& request, std::function<void(Ice::OutgoingResponse)> sendResponse) override;
311
312 [[nodiscard]] std::vector<std::string> ice_ids(const Ice::Current& current) const override;
313
314 [[nodiscard]] std::string ice_id(const Ice::Current& current) const override;
315
316 /// Provides a reply to a ::IceLocatorDiscovery::LookupPrx::findLocator request.
317 /// @param prx The proxy of the locator.
318 /// @param response The response callback.
319 /// @param exception The exception callback.
320 /// @param current The Current object of the incoming request.
321 virtual void foundLocatorAsync(std::optional<::Ice::LocatorPrx> prx, std::function<void()> response, std::function<void(std::exception_ptr)> exception, const Ice::Current& current) = 0;
322
323 /// @private
324 void _iceD_foundLocator(Ice::IncomingRequest&, std::function<void(Ice::OutgoingResponse)>);
325
326 /// Gets the type ID of the associated Slice interface.
327 /// @return The string `"::IceLocatorDiscovery::LookupReply"`.
328 static const char* ice_staticId() noexcept;
329 };
330
331 /// A shared pointer to an AsyncLookupReply.
332 using AsyncLookupReplyPtr = std::shared_ptr<AsyncLookupReply>;
333
334 /// Looks for a locator using UDP multicast.
335 /// @remarks This interface is implemented by Ice locator implementations and can be used by clients to find
336 /// available Ice locators on the network.
337 /// Ice locator implementations provide a well-known `Ice/LocatorLookup` object accessible through UDP multicast.
338 /// Clients typically make a multicast `findLocator` request to find the locator proxy.
339 ///
340 /// The Slice compiler generated this skeleton class from Slice interface `::IceLocatorDiscovery::Lookup`.
341 /// @see LookupReplyPrx
342 class AsyncLookup : public virtual Ice::Object
343 {
344 public:
345 /// The associated proxy type.
347
348 /// Dispatches an incoming request to one of the member functions of this generated class, based on the operation name carried by the request.
349 /// @param request The incoming request.
350 /// @param sendResponse The callback to send the response.
351 void dispatch(Ice::IncomingRequest& request, std::function<void(Ice::OutgoingResponse)> sendResponse) override;
352
353 [[nodiscard]] std::vector<std::string> ice_ids(const Ice::Current& current) const override;
354
355 [[nodiscard]] std::string ice_id(const Ice::Current& current) const override;
356
357 /// Finds a locator proxy with the given @p instanceName.
358 /// @param instanceName Restrict the search to Ice registries configured with the given instance name. If
359 /// empty, all the available registries will reply.
360 /// @param reply The reply object to use to send the reply.
361 /// @param response The response callback.
362 /// @param exception The exception callback.
363 /// @param current The Current object of the incoming request.
364 virtual void findLocatorAsync(std::string instanceName, std::optional<LookupReplyPrx> reply, std::function<void()> response, std::function<void(std::exception_ptr)> exception, const Ice::Current& current) = 0;
365
366 /// @private
367 void _iceD_findLocator(Ice::IncomingRequest&, std::function<void(Ice::OutgoingResponse)>);
368
369 /// Gets the type ID of the associated Slice interface.
370 /// @return The string `"::IceLocatorDiscovery::Lookup"`.
371 static const char* ice_staticId() noexcept;
372 };
373
374 /// A shared pointer to an AsyncLookup.
375 using AsyncLookupPtr = std::shared_ptr<AsyncLookup>;
376}
377
378// NOLINTEND(modernize-concat-nested-namespaces)
379
380#include <Ice/PopDisableWarnings.h>
381#endif
static const char * ice_staticId() noexcept
Gets the type ID of the associated Slice interface.
std::string ice_id(const Ice::Current &current) const override
Gets the type ID of the most-derived Slice interface supported by this object.
LookupReplyPrx ProxyType
The associated proxy type.
Definition Lookup.h:305
std::vector< std::string > ice_ids(const Ice::Current &current) const override
Gets the Slice interfaces supported by this object as a list of Slice type IDs.
virtual void foundLocatorAsync(std::optional<::Ice::LocatorPrx > prx, std::function< void()> response, std::function< void(std::exception_ptr)> exception, const Ice::Current &current)=0
Provides a reply to a IceLocatorDiscovery::LookupPrx::findLocator request.
void dispatch(Ice::IncomingRequest &request, std::function< void(Ice::OutgoingResponse)> sendResponse) override
Dispatches an incoming request to one of the member functions of this generated class,...
Represents a callback object implemented by IceLocatorDiscovery clients.
Definition Lookup.h:302
void dispatch(Ice::IncomingRequest &request, std::function< void(Ice::OutgoingResponse)> sendResponse) override
Dispatches an incoming request to one of the member functions of this generated class,...
std::string ice_id(const Ice::Current &current) const override
Gets the type ID of the most-derived Slice interface supported by this object.
LookupPrx ProxyType
The associated proxy type.
Definition Lookup.h:346
virtual void findLocatorAsync(std::string instanceName, std::optional< LookupReplyPrx > reply, std::function< void()> response, std::function< void(std::exception_ptr)> exception, const Ice::Current &current)=0
Finds a locator proxy with the given instanceName.
static const char * ice_staticId() noexcept
Gets the type ID of the associated Slice interface.
std::vector< std::string > ice_ids(const Ice::Current &current) const override
Gets the Slice interfaces supported by this object as a list of Slice type IDs.
Looks for a locator using UDP multicast.
Definition Lookup.h:343
LookupPrx & operator=(LookupPrx &&rhs) noexcept
Move assignment operator.
Definition Lookup.h:159
std::function< void()> findLocatorAsync(std::string_view instanceName, const std::optional< LookupReplyPrx > &reply, std::function< void()> response, std::function< void(std::exception_ptr)> exception=nullptr, std::function< void(bool)> sent=nullptr, const Ice::Context &context=Ice::noExplicitContext) const
Finds a locator proxy with the given instanceName.
LookupPrx(const LookupPrx &other) noexcept
Copy constructor.
Definition Lookup.h:137
void findLocator(std::string_view instanceName, const std::optional< LookupReplyPrx > &reply, const Ice::Context &context=Ice::noExplicitContext) const
Finds a locator proxy with the given instanceName.
LookupPrx(LookupPrx &&other) noexcept
Move constructor.
Definition Lookup.h:141
std::future< void > findLocatorAsync(std::string_view instanceName, const std::optional< LookupReplyPrx > &reply, const Ice::Context &context=Ice::noExplicitContext) const
Finds a locator proxy with the given instanceName.
static const char * ice_staticId() noexcept
Gets the type ID of the associated Slice interface.
LookupPrx(const Ice::CommunicatorPtr &communicator, std::string_view proxyString)
Constructs a proxy from a Communicator and a proxy string.
Definition Lookup.h:133
LookupPrx & operator=(const LookupPrx &rhs) noexcept
Copy assignment operator.
Definition Lookup.h:148
Looks for a locator using UDP multicast.
Definition Lookup.h:128
LookupReplyPrx(const LookupReplyPrx &other) noexcept
Copy constructor.
Definition Lookup.h:47
LookupReplyPrx(LookupReplyPrx &&other) noexcept
Move constructor.
Definition Lookup.h:51
static const char * ice_staticId() noexcept
Gets the type ID of the associated Slice interface.
LookupReplyPrx & operator=(const LookupReplyPrx &rhs) noexcept
Copy assignment operator.
Definition Lookup.h:58
void foundLocator(const std::optional<::Ice::LocatorPrx > &prx, const Ice::Context &context=Ice::noExplicitContext) const
Provides a reply to a IceLocatorDiscovery::LookupPrx::findLocator request.
std::future< void > foundLocatorAsync(const std::optional<::Ice::LocatorPrx > &prx, const Ice::Context &context=Ice::noExplicitContext) const
Provides a reply to a IceLocatorDiscovery::LookupPrx::findLocator request.
LookupReplyPrx(const Ice::CommunicatorPtr &communicator, std::string_view proxyString)
Constructs a proxy from a Communicator and a proxy string.
Definition Lookup.h:43
LookupReplyPrx & operator=(LookupReplyPrx &&rhs) noexcept
Move assignment operator.
Definition Lookup.h:69
std::function< void()> foundLocatorAsync(const std::optional<::Ice::LocatorPrx > &prx, std::function< void()> response, std::function< void(std::exception_ptr)> exception=nullptr, std::function< void(bool)> sent=nullptr, const Ice::Context &context=Ice::noExplicitContext) const
Provides a reply to a IceLocatorDiscovery::LookupPrx::findLocator request.
Represents a callback object implemented by IceLocatorDiscovery clients.
Definition Lookup.h:38
LookupReplyPrx ProxyType
The associated proxy type.
Definition Lookup.h:226
std::vector< std::string > ice_ids(const Ice::Current &current) const override
Gets the Slice interfaces supported by this object as a list of Slice type IDs.
virtual void foundLocator(std::optional<::Ice::LocatorPrx > prx, const Ice::Current &current)=0
Provides a reply to a IceLocatorDiscovery::LookupPrx::findLocator request.
std::string ice_id(const Ice::Current &current) const override
Gets the type ID of the most-derived Slice interface supported by this object.
static const char * ice_staticId() noexcept
Gets the type ID of the associated Slice interface.
void dispatch(Ice::IncomingRequest &request, std::function< void(Ice::OutgoingResponse)> sendResponse) override
Dispatches an incoming request to one of the member functions of this generated class,...
Represents a callback object implemented by IceLocatorDiscovery clients.
Definition Lookup.h:223
std::string ice_id(const Ice::Current &current) const override
Gets the type ID of the most-derived Slice interface supported by this object.
virtual void findLocator(std::string instanceName, std::optional< LookupReplyPrx > reply, const Ice::Current &current)=0
Finds a locator proxy with the given instanceName.
static const char * ice_staticId() noexcept
Gets the type ID of the associated Slice interface.
std::vector< std::string > ice_ids(const Ice::Current &current) const override
Gets the Slice interfaces supported by this object as a list of Slice type IDs.
LookupPrx ProxyType
The associated proxy type.
Definition Lookup.h:265
void dispatch(Ice::IncomingRequest &request, std::function< void(Ice::OutgoingResponse)> sendResponse) override
Dispatches an incoming request to one of the member functions of this generated class,...
Looks for a locator using UDP multicast.
Definition Lookup.h:262
Represents a request received by a connection.
ObjectPrx & operator=(const ObjectPrx &rhs) noexcept=default
Copy assignment operator.
The base class for all Ice proxies.
Definition Proxy.h:232
Object() noexcept=default
Default constructor.
The base class for servants.
Definition Object.h:21
Represents the response to an incoming request.
Provides typed proxy functions.
Definition Proxy.h:45
std::shared_ptr< LookupReply > LookupReplyPtr
A shared pointer to a LookupReply.
Definition Lookup.h:251
std::shared_ptr< AsyncLookup > AsyncLookupPtr
A shared pointer to an AsyncLookup.
Definition Lookup.h:375
std::shared_ptr< AsyncLookupReply > AsyncLookupReplyPtr
A shared pointer to an AsyncLookupReply.
Definition Lookup.h:332
std::shared_ptr< Lookup > LookupPtr
A shared pointer to a Lookup.
Definition Lookup.h:292
IceLocatorDiscovery is an Ice plug-in that enables the discovery of Ice locators (such as IceGrid) vi...
Definition Lookup.h:25
std::shared_ptr< Communicator > CommunicatorPtr
A shared pointer to a Communicator.
const Context noExplicitContext
Marker value used to indicate that no explicit request context was passed to a proxy invocation.
std::map< std::string, std::string, std::less<> > Context
Represents additional information carried by an Ice request.
Definition Context.h:28
The Ice RPC framework.
Definition SampleEvent.h:60
Provides information about an incoming request being dispatched.
Definition Current.h:18