public abstract class DeliveryMode extends Object
Modifier and Type | Field and Description |
---|---|
static DeliveryMode |
CLUSTER_MODE
Clustered delivery mode.
|
static DeliveryMode |
FEDERATION_MODE
Federated delivery mode.
|
Modifier and Type | Method and Description |
---|---|
abstract String |
getLabel(Locale aLocale)
Returns the label depending on the specified locale.
|
abstract boolean |
isCluster()
Returns
true if in clustered delivery mode, otherwise returns false . |
abstract boolean |
isFederation()
Returns
true if in federated delivery mode, otherwise returns false . |
public static final DeliveryMode CLUSTER_MODE
Clusters have a strong requirement for transactional integrity. Since a client application can successively access several nodes during the same transaction, the nodes must deliver the same transactional state.
public static final DeliveryMode FEDERATION_MODE
In a federation, the transactional requirements can be relaxed. Updates of replica nodes are performed asynchronously and using replays.
public abstract String getLabel(Locale aLocale)
public abstract boolean isCluster()
true
if in clustered delivery mode, otherwise returns false
.public abstract boolean isFederation()
true
if in federated delivery mode, otherwise returns false
.