public static interface D3Broadcast.Status
'Not initialized'
or 'In progress'
'Commit'
or 'Rollback'
'Not initialized'
: if the broadcast operation has not yet begun'In progress'
: if the federated delivery is in progress or waiting for the next replay'Commit'
: if the federated delivery ends successfully'Rollback'
: if the federated delivery ends with an errorModifier and Type | Method and Description |
---|---|
String |
getLabel(Locale aLocale)
Returns the broadcast operation status label depending on the specified locale.
|
boolean |
isCommit()
Returns
true if the broadcast operation succeeded, otherwise returns false . |
boolean |
isInProcess()
Returns
true if the broadcast operation is in progress, otherwise returns false . |
boolean |
isNotInitialized()
Returns
true if the broadcast operation has not begun yet, otherwise returns false . |
boolean |
isRollback()
Returns
true if the broadcast operation failed, otherwise returns false . |
String getLabel(Locale aLocale)
If the locale language is fr
, returns label in French. Otherwise,
returns in English.
boolean isNotInitialized()
true
if the broadcast operation has not begun yet, otherwise returns false
.boolean isInProcess()
true
if the broadcast operation is in progress, otherwise returns false
.boolean isCommit()
true
if the broadcast operation succeeded, otherwise returns false
.boolean isRollback()
true
if the broadcast operation failed, otherwise returns false
.