Enum Reliability
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum Reliability extends Enum<Reliability>
The reliability policy.
Used by subscribers to inform the network of the reliability it wishes to obtain.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEST_EFFORT
Best Effort
Informs the network that dropping some messages is acceptable.
RELIABLE
Reliable
Informs the network that this subscriber wishes for all publications to reliably reach it.
Note that if a publisher puts a sample with the io.zenoh.prelude.CongestionControl.DROP option, this reliability requirement may be infringed to prevent slow readers from blocking the network.
-
Method Summary
Modifier and Type Method Description final Reliability
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<Reliability>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final Reliability 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<Reliability> 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.
-
-
-
-