Class TablesServiceGrpc.TablesServiceBlockingStub (0.48.0)

public static final class TablesServiceGrpc.TablesServiceBlockingStub extends AbstractBlockingStub<TablesServiceGrpc.TablesServiceBlockingStub>

A stub to allow clients to do synchronous rpc calls to service TablesService.

The Tables Service provides an API for reading and updating tables. It defines the following resource model:

  • The API has a collection of Table resources, named tables/*
  • Each Table has a collection of Row resources, named tables/*/rows/*
  • The API has a collection of Workspace resources, named workspaces/*.

Inheritance

java.lang.Object > io.grpc.stub.AbstractStub > io.grpc.stub.AbstractBlockingStub > TablesServiceGrpc.TablesServiceBlockingStub

Methods

batchCreateRows(BatchCreateRowsRequest request)

public BatchCreateRowsResponse batchCreateRows(BatchCreateRowsRequest request)

Creates multiple rows.

Parameter
Name Description
request BatchCreateRowsRequest
Returns
Type Description
BatchCreateRowsResponse

batchDeleteRows(BatchDeleteRowsRequest request)

public Empty batchDeleteRows(BatchDeleteRowsRequest request)

Deletes multiple rows.

Parameter
Name Description
request BatchDeleteRowsRequest
Returns
Type Description
Empty

batchUpdateRows(BatchUpdateRowsRequest request)

public BatchUpdateRowsResponse batchUpdateRows(BatchUpdateRowsRequest request)

Updates multiple rows.

Parameter
Name Description
request BatchUpdateRowsRequest
Returns
Type Description
BatchUpdateRowsResponse

build(Channel channel, CallOptions callOptions)

protected TablesServiceGrpc.TablesServiceBlockingStub build(Channel channel, CallOptions callOptions)
Parameters
Name Description
channel io.grpc.Channel
callOptions io.grpc.CallOptions
Returns
Type Description
TablesServiceGrpc.TablesServiceBlockingStub
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)

createRow(CreateRowRequest request)

public Row createRow(CreateRowRequest request)

Creates a row.

Parameter
Name Description
request CreateRowRequest
Returns
Type Description
Row

deleteRow(DeleteRowRequest request)

public Empty deleteRow(DeleteRowRequest request)

Deletes a row.

Parameter
Name Description
request DeleteRowRequest
Returns
Type Description
Empty

getRow(GetRowRequest request)

public Row getRow(GetRowRequest request)

Gets a row. Returns NOT_FOUND if the row does not exist in the table.

Parameter
Name Description
request GetRowRequest
Returns
Type Description
Row

getTable(GetTableRequest request)

public Table getTable(GetTableRequest request)

Gets a table. Returns NOT_FOUND if the table does not exist.

Parameter
Name Description
request GetTableRequest
Returns
Type Description
Table

getWorkspace(GetWorkspaceRequest request)

public Workspace getWorkspace(GetWorkspaceRequest request)

Gets a workspace. Returns NOT_FOUND if the workspace does not exist.

Parameter
Name Description
request GetWorkspaceRequest
Returns
Type Description
Workspace

listRows(ListRowsRequest request)

public ListRowsResponse listRows(ListRowsRequest request)

Lists rows in a table. Returns NOT_FOUND if the table does not exist.

Parameter
Name Description
request ListRowsRequest
Returns
Type Description
ListRowsResponse

listTables(ListTablesRequest request)

public ListTablesResponse listTables(ListTablesRequest request)

Lists tables for the user.

Parameter
Name Description
request ListTablesRequest
Returns
Type Description
ListTablesResponse

listWorkspaces(ListWorkspacesRequest request)

public ListWorkspacesResponse listWorkspaces(ListWorkspacesRequest request)

Lists workspaces for the user.

Parameter
Name Description
request ListWorkspacesRequest
Returns
Type Description
ListWorkspacesResponse

updateRow(UpdateRowRequest request)

public Row updateRow(UpdateRowRequest request)

Updates a row.

Parameter
Name Description
request UpdateRowRequest
Returns
Type Description
Row