OperationalModes Enumeration |  |
Namespace: sttp.transportAssembly: sttp.net (in sttp.net.dll) Version: 1.0.0
Syntax
MembersMember name | Value | Description |
---|
NoFlags | 0 |
State where there are no flags set.
|
VersionMask | 255 |
Bit mask used to get version number of protocol.
|
EncodingMask | 768 |
Bit mask used to get character encoding used when exchanging messages between publisher and subscriber.
|
ImplementationSpecificExtensionMask | 16,711,680 |
Bit mask used to apply an implementation-specific extension to STTP.
|
ReceiveExternalMetadata | 33,554,432 |
Bit flag used to determine whether external measurements are exchanged during metadata synchronization.
|
ReceiveInternalMetadata | 67,108,864 |
Bit flag used to determine whether internal measurements are exchanged during metadata synchronization.
|
CompressPayloadData | 536,870,912 |
Bit flag used to determine whether payload data is compressed when exchanging between publisher and subscriber.
|
CompressSignalIndexCache | 1,073,741,824 |
Bit flag used to determine whether the signal index cache is compressed when exchanging between publisher and subscriber.
|
CompressMetadata | 2,147,483,648 |
Bit flag used to determine whether metadata is compressed when exchanging between publisher and subscriber.
|
Remarks
Operational modes are sent from a subscriber to a publisher to request operational behaviors for the
connection, as a result the operation modes must be sent before any other command. The publisher may
silently refuse some requests (e.g., compression) based on its configuration. Operational modes only
apply to fundamental protocol control.
See Also