Class RowFilter.Types.Chain (3.1.0)

public sealed class Chain : IMessage<RowFilter.Types.Chain>, IEquatable<RowFilter.Types.Chain>, IDeepCloneable<RowFilter.Types.Chain>, IBufferMessage, IMessage

A RowFilter which sends rows through several RowFilters in sequence.

Inheritance

Object > RowFilter.Types.Chain

Namespace

Google.Cloud.Bigtable.V2

Assembly

Google.Cloud.Bigtable.V2.dll

Constructors

Chain()

public Chain()

Chain(RowFilter.Types.Chain)

public Chain(RowFilter.Types.Chain other)
Parameter
NameDescription
otherRowFilter.Types.Chain

Properties

Filters

public RepeatedField<RowFilter> Filters { get; }

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.

Property Value
TypeDescription
RepeatedField<RowFilter>