Reference documentation and code samples for the Cloud Bigtable Client class ChainFilter.
Chains together multiple filters.
Example:
use Google\Cloud\Bigtable\Filter;
$chainFilter = Filter::chain();
Methods
addFilter
Adds a filter to the chain.
Example:
use Google\Cloud\Bigtable\Filter;
$chainFilter->addFilter(
Filter::qualifier()->regex('prefix.*')
);
| Parameter | |
|---|---|
| Name | Description |
filter |
Google\Cloud\Bigtable\Filter\FilterInterface
A filter to add to the chain. |
| Returns | |
|---|---|
| Type | Description |
Google\Cloud\Bigtable\Filter\ChainFilter |
|
toProto
Get the proto representation of the filter.
| Returns | |
|---|---|
| Type | Description |
Google\Cloud\Bigtable\V2\RowFilter |
|