public interface RunQueryResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
RunQueryResponse.ContinuationSelectorCase |
getContinuationSelectorCase() |
Document |
getDocument()
A query result, not set when reporting partial progress.
|
DocumentOrBuilder |
getDocumentOrBuilder()
A query result, not set when reporting partial progress.
|
boolean |
getDone()
If present, Firestore has completely finished the request and no more
documents will be returned.
|
com.google.protobuf.Timestamp |
getReadTime()
The time at which the document was read.
|
com.google.protobuf.TimestampOrBuilder |
getReadTimeOrBuilder()
The time at which the document was read.
|
int |
getSkippedResults()
The number of results that have been skipped due to an offset between
the last response and the current response.
|
com.google.protobuf.ByteString |
getTransaction()
The transaction that was started as part of this request.
|
boolean |
hasDocument()
A query result, not set when reporting partial progress.
|
boolean |
hasDone()
If present, Firestore has completely finished the request and no more
documents will be returned.
|
boolean |
hasReadTime()
The time at which the document was read.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
com.google.protobuf.ByteString getTransaction()
The transaction that was started as part of this request. Can only be set in the first response, and only if [RunQueryRequest.new_transaction][google.firestore.v1.RunQueryRequest.new_transaction] was set in the request. If set, no other fields will be set in this response.
bytes transaction = 2;
boolean hasDocument()
A query result, not set when reporting partial progress.
.google.firestore.v1.Document document = 1;
Document getDocument()
A query result, not set when reporting partial progress.
.google.firestore.v1.Document document = 1;
DocumentOrBuilder getDocumentOrBuilder()
A query result, not set when reporting partial progress.
.google.firestore.v1.Document document = 1;
boolean hasReadTime()
The time at which the document was read. This may be monotonically increasing; in this case, the previous documents in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `document` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
com.google.protobuf.Timestamp getReadTime()
The time at which the document was read. This may be monotonically increasing; in this case, the previous documents in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `document` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder()
The time at which the document was read. This may be monotonically increasing; in this case, the previous documents in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `document` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
int getSkippedResults()
The number of results that have been skipped due to an offset between the last response and the current response.
int32 skipped_results = 4;
boolean hasDone()
If present, Firestore has completely finished the request and no more documents will be returned.
bool done = 6;
boolean getDone()
If present, Firestore has completely finished the request and no more documents will be returned.
bool done = 6;
RunQueryResponse.ContinuationSelectorCase getContinuationSelectorCase()
Copyright © 2023 Google LLC. All rights reserved.