Ice 3.8
C++ API Reference
Loading...
Searching...
No Matches
EndpointSelectionType.h
1// Copyright (c) ZeroC, Inc.
2
3#ifndef ICE_ENDPOINT_SELECTION_TYPE_H
4#define ICE_ENDPOINT_SELECTION_TYPE_H
5
6#include <cstdint>
7
8namespace Ice
9{
10 /// Determines how the Ice runtime sorts proxy endpoints when establishing a connection.
11 enum class EndpointSelectionType : std::uint8_t
12 {
13 /// The Ice runtime shuffles the endpoints in a random order.
15
16 /// The Ice runtime uses the endpoints in the order they appear in the proxy.
18 };
19}
20
21#endif
EndpointSelectionType
Determines how the Ice runtime sorts proxy endpoints when establishing a connection.
@ Ordered
The Ice runtime uses the endpoints in the order they appear in the proxy.
@ Random
The Ice runtime shuffles the endpoints in a random order.
The Ice RPC framework.
Definition SampleEvent.h:59