Module: Blur::RowMutationType

Defined in:
lib/active_blur/thrift/blur_types.rb

Constant Summary collapse

DELETE_ROW =

Indicates that the entire Row is to be deleted.

0
REPLACE_ROW =

Indicates that the entire Row is to be deleted, and then a new Row with the same id is to be added.

1
UPDATE_ROW =

Indicates that mutations of the underlying Records will be processed individually.

2
VALUE_MAP =
{0 => "DELETE_ROW", 1 => "REPLACE_ROW", 2 => "UPDATE_ROW"}
VALID_VALUES =
Set.new([DELETE_ROW, REPLACE_ROW, UPDATE_ROW]).freeze