DELETE is the command for deleting a key/value pair.
from enum value: DELETE = 2;
PUT is the command for putting a key/value pair.
from enum value: PUT = 1;
UNKNOWN is the unknown command type.
from enum value: UNKNOWN = 0;
Generated using TypeDoc
RaftCommandType is the type of command being sent to the Raft log.
Generated
from enum v1.RaftCommandType