Class RowFilterChain (2.10.0)

RowFilterChain(filters=None)

Chain of row filters.

Sends rows through several filters in sequence. The filters are "chained" together to process a row. After the first filter is applied, the second is applied to the filtered output and so on for subsequent filters.

Parameter

NameDescription
filters list

List of RowFilter

Inheritance

builtins.object > RowFilter > google.cloud.bigtable.row_filters._FilterCombination > RowFilterChain

Methods

to_pb

to_pb()

Converts the row filter to a protobuf.

Returns
TypeDescription
`.data_v2_pb2.RowFilter`The converted current object.