Reference documentation and code samples for the Cloud Bigtable Client class ChunkFormatter.
Converts cell chunks into an easily digestable format. Please note this class implements the IteratorAggregate interface, and as such can be iterated over directly in order to access the formatted rows.
Example:
use Google\Cloud\Bigtable\BigtableClient;
$bigtable = new BigtableClient();
$table = $bigtable->table('my-instance', 'my-table');
$formatter = $table->readRows();
Namespace
Google \ Cloud \ BigtableMethods
__construct
Constructs the ChunkFormatter.
gapicClient
request
options
array
[optional] Configuration options for read rows call.
readAll
Formats the row's chunks into a friendly format.
Example:
$rows = $formatter->readAll();
Generator
getIterator
Generator
__debugInfo
Represent the class in a more readable and digestable fashion.