Collection of RealTime enumerations. More...
Header: | #include <RealTimeTypes.h> |
Types
enum class | ConnectionStatus { Disconnected, Connecting, Connected, Failed } |
enum class | DynamicEntityDataSourceType { ArcGISStreamService, DynamicEntityDataSource } |
Detailed Description
Type Documentation
[since Esri::ArcGISRuntime 200.1]
enum class ConnectionStatus
An enumeration of the various status values for a connection.
This describes the status of an object that attempts to maintain a persistent connection.
The ConnectionStatus can be one of:
Constant | Value | Description |
---|---|---|
ConnectionStatus::Disconnected | 0 | The connection is not open. This is the initial state of the connection. |
ConnectionStatus::Connecting | 1 | A connection with the remote endpoint has been initiated but is not yet complete. |
ConnectionStatus::Connected | 2 | The connection is open. This is the initial state after the handshake has been completed. |
ConnectionStatus::Failed | 3 | The connection has failed. |
This enum was introduced or modified in Esri::ArcGISRuntime 200.1.
See also Esri::ArcGISRuntime::DynamicEntityDataSource.
enum class DynamicEntityDataSourceType
The type of DynamicEntityDataSource.
The DynamicEntityDataSourceType can be one of:
Constant | Value | Description |
---|---|---|
DynamicEntityDataSourceType::ArcGISStreamService | 0 | An ArcGIS stream service. |
DynamicEntityDataSourceType::DynamicEntityDataSource | 1 | A custom dynamic entity data source. |