Cloud Bigtable Client - Class TimestampFilter (1.21.1)

Reference documentation and code samples for the Cloud Bigtable Client class TimestampFilter.

A builder used to configure timestamp based filters.

Example:

use Google\Cloud\Bigtable\Filter;

$builder = Filter::timestamp();

Methods

range

Matches only cells with timestamps within the given range.

Example:

$timestampRangeFilter = $builder->range()
    ->of(1536766964380000, 1536766964383000);
Returns
TypeDescription
Google\Cloud\Bigtable\Filter\TimestampRangeFilter