Class: Google::Cloud::Bigtable::V2::RowFilter::Chain

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/bigtable/v2/data.rb

Overview

A RowFilter which sends rows through several RowFilters in sequence.

Instance Attribute Summary collapse

Instance Attribute Details

#filters::Array<::Google::Cloud::Bigtable::V2::RowFilter>

Returns The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.

Returns:

  • (::Array<::Google::Cloud::Bigtable::V2::RowFilter>)

    The elements of "filters" are chained together to process the input row: in row -> f(0) -> intermediate row -> f(1) -> ... -> f(N) -> out row The full chain is executed atomically.



407
408
409
410
# File 'proto_docs/google/bigtable/v2/data.rb', line 407

class Chain
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end