Package com.google.firestore.v1
Class FirestoreGrpc.FirestoreBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<S>
io.grpc.stub.AbstractBlockingStub<FirestoreGrpc.FirestoreBlockingStub>
com.google.firestore.v1.FirestoreGrpc.FirestoreBlockingStub
- Enclosing class:
- FirestoreGrpc
public static final class FirestoreGrpc.FirestoreBlockingStub
extends io.grpc.stub.AbstractBlockingStub<FirestoreGrpc.FirestoreBlockingStub>
A stub to allow clients to do synchronous rpc calls to service Firestore.
The Cloud Firestore service. Cloud Firestore is a fast, fully managed, serverless, cloud-native NoSQL document database that simplifies storing, syncing, and querying data for your mobile, web, and IoT apps at global scale. Its client libraries provide live synchronization and offline support, while its security features and integrations with Firebase and Google Cloud Platform accelerate building truly serverless apps.
-
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 TypeMethodDescriptionGets multiple documents.batchWrite(BatchWriteRequest request) Applies a batch of write operations.beginTransaction(BeginTransactionRequest request) Starts a new transaction.protected FirestoreGrpc.FirestoreBlockingStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions) commit(CommitRequest request) Commits a transaction, while optionally updating documents.createDocument(CreateDocumentRequest request) Creates a new document.com.google.protobuf.EmptydeleteDocument(DeleteDocumentRequest request) Deletes a document.getDocument(GetDocumentRequest request) Gets a single document.Lists all the collection IDs underneath a document.listDocuments(ListDocumentsRequest request) Lists documents.partitionQuery(PartitionQueryRequest request) Partitions a query by returning partition cursors that can be used to run the query in parallel.com.google.protobuf.Emptyrollback(RollbackRequest request) Rolls back a transaction.Runs an aggregation query.runQuery(RunQueryRequest request) Runs a query.updateDocument(UpdateDocumentRequest request) Updates or inserts a document.Methods inherited from class io.grpc.stub.AbstractBlockingStub
newStub, newStubMethods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOnReadyThreshold, withOption, withWaitForReady
-
Method Details
-
build
protected FirestoreGrpc.FirestoreBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
buildin classio.grpc.stub.AbstractStub<FirestoreGrpc.FirestoreBlockingStub>
-
getDocument
Gets a single document.
-
listDocuments
Lists documents.
-
updateDocument
Updates or inserts a document.
-
deleteDocument
Deletes a document.
-
batchGetDocuments
Gets multiple documents. Documents returned by this method are not guaranteed to be returned in the same order that they were requested.
-
beginTransaction
Starts a new transaction.
-
commit
Commits a transaction, while optionally updating documents.
-
rollback
Rolls back a transaction.
-
runQuery
Runs a query.
-
runAggregationQuery
public Iterator<RunAggregationQueryResponse> runAggregationQuery(RunAggregationQueryRequest request) Runs an aggregation query. Rather than producing [Document][google.firestore.v1.Document] results like [Firestore.RunQuery][google.firestore.v1.Firestore.RunQuery], this API allows running an aggregation to produce a series of [AggregationResult][google.firestore.v1.AggregationResult] server-side. High-Level Example: ``` -- Return the number of documents in table given a filter. SELECT COUNT(*) FROM ( SELECT * FROM k where a = true ); ```
-
partitionQuery
Partitions a query by returning partition cursors that can be used to run the query in parallel. The returned partition cursors are split points that can be used by RunQuery as starting/end points for the query results.
-
listCollectionIds
Lists all the collection IDs underneath a document.
-
batchWrite
Applies a batch of write operations. The BatchWrite method does not apply the write operations atomically and can apply them out of order. Method does not allow more than one write per document. Each write succeeds or fails independently. See the [BatchWriteResponse][google.firestore.v1.BatchWriteResponse] for the success status of each write. If you require an atomically applied set of writes, use [Commit][google.firestore.v1.Firestore.Commit] instead.
-
createDocument
Creates a new document.
-