public static enum Reliability.Kind extends Enum<Reliability.Kind>
Enum Constant and Description |
---|
BEST_EFFORT
Indicates that it is acceptable to not retry propagation of any
samples.
|
RELIABLE
Specifies the Service will attempt to deliver all samples in its
history.
|
Modifier and Type | Method and Description |
---|---|
static Reliability.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Reliability.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reliability.Kind BEST_EFFORT
DataReader
s and
Topic
s.public static final Reliability.Kind RELIABLE
DataWriter
) the
middleware guarantees that all samples in the DataWriter history
will eventually be delivered to all the DataReader
objects.
Outside steady state the History
and
ResourceLimits
will determine how samples become
part of the history and whether samples can be discarded from it.
This is the default value for DataWriters.public static Reliability.Kind[] values()
for (Reliability.Kind c : Reliability.Kind.values()) System.out.println(c);
public static Reliability.Kind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014. All rights reserved.