Enumeration RaftCommandType

RaftCommandType is the type of command being sent to the Raft log.

Generated

from enum v1.RaftCommandType

Enumeration Members

Enumeration Members

DELETE: 2

DELETE is the command for deleting a key/value pair.

Generated

from enum value: DELETE = 2;

PUT: 1

PUT is the command for putting a key/value pair.

Generated

from enum value: PUT = 1;

UNKNOWN: 0

UNKNOWN is the unknown command type.

Generated

from enum value: UNKNOWN = 0;

Generated using TypeDoc