public static enum Reliability.Kind extends java.lang.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(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null
Copyright © 2010 Real-Time Innovations, Inc. (RTI)
Copyright © 2010 PrismTech, Ltd.
Copyright © 2010 Object Management Group, Inc. (OMG)
All Rights Reserved.