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