Cloud Bigtable Client - Class TimestampFilter (1.24.1)

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

A builder used to configure timestamp based filters.

Example:

See more code actions.
use Google\Cloud\Bigtable\Filter;

$builder
= Filter::timestamp();
Google \ Cloud \ Bigtable \ Filter \ Builder

Methods

range

Matches only cells with timestamps within the given range.

Example:

$timestampRangeFilter = $builder->range()
   
->of(1536766964380000, 1536766964383000);