Uses of Class
com.google.cloud.bigtable.data.v2.models.Row
-
Packages that use Row Package Description com.google.cloud.bigtable.data.v2 A client for the Cloud Bigtable data API.com.google.cloud.bigtable.data.v2.models com.google.cloud.bigtable.data.v2.stub -
-
Uses of Row in com.google.cloud.bigtable.data.v2
Methods in com.google.cloud.bigtable.data.v2 that return Row Modifier and Type Method Description Row
BigtableDataClient. readModifyWriteRow(ReadModifyWriteRow mutation)
Convenience method that synchronously modifies a row atomically on the server.Row
BigtableDataClient. readRow(String tableId, com.google.protobuf.ByteString rowKey)
Convenience method for synchronously reading a single row.Row
BigtableDataClient. readRow(String tableId, com.google.protobuf.ByteString rowKey, Filters.Filter filter)
Convenience method for synchronously reading a single row.Row
BigtableDataClient. readRow(String tableId, String rowKey)
Convenience method for synchronously reading a single row.Row
BigtableDataClient. readRow(String tableId, String rowKey, Filters.Filter filter)
Convenience method for synchronously reading a single row.Methods in com.google.cloud.bigtable.data.v2 that return types with arguments of type Row Modifier and Type Method Description com.google.api.gax.batching.Batcher<com.google.protobuf.ByteString,Row>
BigtableDataClient. newBulkReadRowsBatcher(String tableId)
Reads rows for given tableId in a batch.com.google.api.gax.batching.Batcher<com.google.protobuf.ByteString,Row>
BigtableDataClient. newBulkReadRowsBatcher(String tableId, Filters.Filter filter)
Reads rows for given tableId and filter criteria in a batch.com.google.api.gax.batching.Batcher<com.google.protobuf.ByteString,Row>
BigtableDataClient. newBulkReadRowsBatcher(String tableId, Filters.Filter filter, com.google.api.gax.grpc.GrpcCallContext ctx)
Reads rows for given tableId and filter criteria in a batch.com.google.api.core.ApiFuture<Row>
BigtableDataClient. readModifyWriteRowAsync(ReadModifyWriteRow mutation)
Convenience method that asynchronously modifies a row atomically on the server.com.google.api.gax.rpc.UnaryCallable<ReadModifyWriteRow,Row>
BigtableDataClient. readModifyWriteRowCallable()
Modifies a row atomically on the server.com.google.api.core.ApiFuture<Row>
BigtableDataClient. readRowAsync(String tableId, com.google.protobuf.ByteString rowKey)
Convenience method for asynchronously reading a single row.com.google.api.core.ApiFuture<Row>
BigtableDataClient. readRowAsync(String tableId, com.google.protobuf.ByteString rowKey, Filters.Filter filter)
Convenience method for asynchronously reading a single row.com.google.api.core.ApiFuture<Row>
BigtableDataClient. readRowAsync(String tableId, String rowKey)
Convenience method for asynchronously reading a single row.com.google.api.core.ApiFuture<Row>
BigtableDataClient. readRowAsync(String tableId, String rowKey, Filters.Filter filter)
Convenience method for asynchronously reading a single row.com.google.api.gax.rpc.UnaryCallable<Query,Row>
BigtableDataClient. readRowCallable()
Reads a single row.com.google.api.gax.rpc.ServerStream<Row>
BigtableDataClient. readRows(Query query)
Convenience method for synchronously streaming the results of aQuery
.com.google.api.gax.rpc.ServerStreamingCallable<Query,Row>
BigtableDataClient. readRowsCallable()
Streams back the results of the query.com.google.api.gax.rpc.UnaryCallSettings<Query,Row>
BigtableDataSettings. readRowSettings()
Returns the object with the settings used for point reads via ReadRow.Method parameters in com.google.cloud.bigtable.data.v2 with type arguments of type Row Modifier and Type Method Description void
BigtableDataClient. readRowsAsync(Query query, com.google.api.gax.rpc.ResponseObserver<Row> observer)
Convenience method for asynchronously streaming the results of aQuery
. -
Uses of Row in com.google.cloud.bigtable.data.v2.models
Methods in com.google.cloud.bigtable.data.v2.models that return Row Modifier and Type Method Description static Row
Row. create(com.google.protobuf.ByteString key, List<RowCell> cells)
Creates a new instance of theRow
.Row
DefaultRowAdapter. createRowFromProto(Row row)
Helper to convert a proto Row to a model Row.Row
DefaultRowAdapter.DefaultRowBuilder. createScanMarkerRow(com.google.protobuf.ByteString key)
Creates a special row to mark server progress before any data is receivedRow
DefaultRowAdapter.DefaultRowBuilder. finishRow()
Called once per row to signal that all cells have been processed (unless reset).Methods in com.google.cloud.bigtable.data.v2.models that return types with arguments of type Row Modifier and Type Method Description static Comparator<Row>
Row. compareByKey()
Returns a comparator that compares two Row objects by comparing the result ofgetKey()
} for each.RowAdapter.RowBuilder<Row>
DefaultRowAdapter. createRowBuilder()
Creates a new instance of aRowAdapter.RowBuilder
.Methods in com.google.cloud.bigtable.data.v2.models with parameters of type Row Modifier and Type Method Description com.google.protobuf.ByteString
DefaultRowAdapter. getKey(Row row)
boolean
DefaultRowAdapter. isScanMarkerRow(Row row)
Checks if the given row is a special marker row. -
Uses of Row in com.google.cloud.bigtable.data.v2.stub
Methods in com.google.cloud.bigtable.data.v2.stub that return types with arguments of type Row Modifier and Type Method Description com.google.api.gax.rpc.UnaryCallSettings.Builder<ReadModifyWriteRow,Row>
EnhancedBigtableStubSettings.Builder. readModifyWriteRowSettings()
Returns the builder with the settings used for calls to ReadModifyWriteRow.com.google.api.gax.rpc.UnaryCallSettings<ReadModifyWriteRow,Row>
EnhancedBigtableStubSettings. readModifyWriteRowSettings()
Returns the object with the settings used for calls to ReadModifyWriteRow.com.google.api.gax.rpc.UnaryCallSettings.Builder<Query,Row>
EnhancedBigtableStubSettings.Builder. readRowSettings()
Returns the builder for the settings used for point reads using readRow.com.google.api.gax.rpc.UnaryCallSettings<Query,Row>
EnhancedBigtableStubSettings. readRowSettings()
Returns the object with the settings used for point reads via ReadRows.com.google.api.gax.rpc.ServerStreamingCallSettings.Builder<Query,Row>
EnhancedBigtableStubSettings.Builder. readRowsSettings()
Returns the builder for the settings used for calls to readRows.com.google.api.gax.rpc.ServerStreamingCallSettings<Query,Row>
EnhancedBigtableStubSettings. readRowsSettings()
Returns the object with the settings used for calls to ReadRows.
-