1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
pub const OP_ACTOR_EXEC_TXN: &str = "ActorExecuteTxn";
pub const OP_ACTOR_REPLICAS_REMOVED: &str = "ActorReplicasRemoved";
pub const OP_GEN_SYNC_MSG: &str = "GenerateSyncMessage";
pub const OP_REV_SYNC_MSG: &str = "ReceiveSyncMessage";
pub const OP_CLEAR_UP: &str = "CleanUpSyncReplica";
pub const OP_GET_REPLICA_COUNT: &str = "GetReplicaCount";
pub const OP_REV_FOLLOWUP: &str = "ReceiveFollowup";
pub const OP_REV_TXN: &str = "ReceiveTxn";
pub const OP_FETCH_HISTORY: &str = "FetchHistory";
pub const OP_RECOVER_HISTORY: &str = "RecoverHistory";
pub const OP_GET_HISTORY_SINCE: &str = "GetHistorySince";
pub const OP_RESET_REPLICAS_COUNT: &str = "ResetReplicasCount";
pub const OP_FIND_EXECUTED_TXN: &str = "FindExecutedTxn";
pub const OP_GET_CONSENSUS_REPLICAS: &str = "GetConsensusReplicas";
pub const OP_SET_SINGLE_MODE: &str = "SetSingleMode";
pub const OP_GET_SINGLE_MODE: &str = "GetSingleMode";
pub const OP_REPORT_TXN_EXEC_ERR: &str = "ReportTxnExecError";
pub const OP_GET_EXEC_CURSOR: &str = "GetExecCursor";
pub const OP_RESET_EXEC_CURSOR: &str = "ResetExecCursor";
pub const OP_DUMP_TXN_SEQUENCE: &str = "DumpTxnSeq";
pub const OP_UNSET_SHOULD_LOCK: &str = "UnsetShouldLock";
pub const OP_RESET_MAGIC_NUMBER: &str = "ResetMagicNumber";