Class PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<S>
io.grpc.stub.AbstractBlockingStub<PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub>
io.deephaven.proto.backplane.grpc.PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub
- Enclosing class:
- PartitionedTableServiceGrpc
public static final class PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub
extends io.grpc.stub.AbstractBlockingStub<PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub>
A stub to allow clients to do synchronous rpc calls to service PartitionedTableService.
This service provides tools to create and query partitioned tables.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.grpc.stub.AbstractStub
io.grpc.stub.AbstractStub.StubFactory<T extends io.grpc.stub.AbstractStub<T>>
-
Method Summary
Modifier and TypeMethodDescriptionbuild
(io.grpc.Channel channel, io.grpc.CallOptions callOptions) getTable
(GetTableRequest request) Given a partitioned table and a row described by another table's contents, returns a table that matched that row, if any.merge
(MergeRequest request) Given a partitioned table, returns a table with the contents of all of the constituent tables.partitionBy
(PartitionByRequest request) Transforms a table into a partitioned table, consisting of many separate tables, each individually addressable.Methods inherited from class io.grpc.stub.AbstractBlockingStub
newStub, newStub
Methods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOption, withWaitForReady
-
Method Details
-
build
protected PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
build
in classio.grpc.stub.AbstractStub<PartitionedTableServiceGrpc.PartitionedTableServiceBlockingStub>
-
partitionBy
Transforms a table into a partitioned table, consisting of many separate tables, each individually addressable. The result will be a FetchObjectResponse populated with a PartitionedTable.
-
merge
Given a partitioned table, returns a table with the contents of all of the constituent tables.
-
getTable
Given a partitioned table and a row described by another table's contents, returns a table that matched that row, if any. If none is present, NOT_FOUND will be sent in response. If more than one is present, FAILED_PRECONDITION will be sent in response. If the provided key table has any number of rows other than one, INVALID_ARGUMENT will be sent in response. The simplest way to generally use this is to subscribe to the key columns of the underlying table of a given PartitionedTable, then use /FlightService/DoPut to create a table with the desired keys, and pass that ticket to this service. After that request is sent (note that it is not required to wait for it to complete), that new table ticket can be used to make this GetTable request.
-