Package io.zenoh.qos
Enum Priority
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum Priority extends Enum<Priority>
The Priority of Zenoh messages.
A Priority is identified by a numeric value. Lower the value, higher the priority. Higher the value, lower the priority.
Highest priority: 1 (REALTIME)
Lowest priority: 7 (BACKGROUND)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classPriority.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description REALTIMEINTERACTIVE_HIGHINTERACTIVE_LOWDATA_HIGHDATADATA_LOWBACKGROUND
-
Method Summary
-
-
Method Detail
-
valueOf
final Priority valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<Priority> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-