ReplayState (enum)
Curently unused.
This enum to support the (incubating) Command Replay extension.
API
ReplayState.java
enum ReplayState {
UNDEFINED (1)
EXPORTED (2)
PENDING (3)
OK (4)
FAILED (5)
EXCLUDED (6)
boolean isFailed()
}
| 1 | UNDEFINED
As used on primary system, indicating an initial state. |
| 2 | EXPORTED
Marks a CommandLogEntry as exported, such that consecutive export actions will skip those. |
| 3 | PENDING
For use on secondary system, indicates that the command has not yet been replayed. |
| 4 | OK
For use on secondary system, indicates that the command has been replayed ok |
| 5 | FAILED
For use on secondary system, indicates that the command has been replayed but encountered an error |
| 6 | EXCLUDED
For use on secondary system, indicates that the command should not be replayed. |
Members
EXPORTED
Marks a CommandLogEntry as exported, such that consecutive export actions will skip those.