Documentation ¶ Overview ¶ Package dboper contains a type used to represent single DB operation. Index ¶ type Operation Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Operation ¶ type Operation struct { // State can be Added, Changed or Deleted. State string `json:"state"` Key []byte `json:"key"` Value []byte `json:"value,omitempty"` } Operation represents a single KV operation (add/del/change) performed in the DB. Source Files ¶ View all Source files operation.go Click to show internal directories. Click to hide internal directories.