ReplayState (enum)

Curently unused.

This enum to support the (incubating) Command Replay extension.

API

ReplayState.java
enum ReplayState {
  UNDEFINED     (1)
  PENDING     (2)
  OK     (3)
  FAILED     (4)
  EXCLUDED     (5)
  boolean isFailed()
}
1 UNDEFINED

As used on primary system.

2 PENDING

For use on secondary system, indicates that the command has not yet been replayed.

3 OK

For use on secondary system, indicates that the command has been replayed ok

4 FAILED

For use on secondary system, indicates that the command has been replayed but encountered an error

5 EXCLUDED

For use on secondary system, indicates that the command should not be replayed.

Members

UNDEFINED

As used on primary system.

PENDING

For use on secondary system, indicates that the command has not yet been replayed.

OK

For use on secondary system, indicates that the command has been replayed ok

FAILED

For use on secondary system, indicates that the command has been replayed but encountered an error

EXCLUDED

For use on secondary system, indicates that the command should not be replayed.