Class: Google::Cloud::Bigtable::V2::RowFilter::Chain
- Inherits:
-
Object
- Object
- Google::Cloud::Bigtable::V2::RowFilter::Chain
- 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
-
#filters ⇒ ::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) -> ...
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.
455 456 457 458 |
# File 'proto_docs/google/bigtable/v2/data.rb', line 455 class Chain include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |