Uses of Class
com.google.cloud.datastore.ReadOption
-
Packages that use ReadOption Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications.com.google.cloud.datastore.execution -
-
Uses of ReadOption in com.google.cloud.datastore
Subclasses of ReadOption in com.google.cloud.datastore Modifier and Type Class Description static classReadOption.EventualConsistencySpecifies eventual consistency for reads from Datastore.static classReadOption.ReadTimeReads entities as they were at the given time.Methods in com.google.cloud.datastore that return ReadOption Modifier and Type Method Description static ReadOptionReadOption. transactionId(com.google.protobuf.ByteString transactionId)Returns aReadOptionthat specifies transaction id, allowing Datastore to execute aQueryin this transaction.static ReadOptionReadOption. transactionId(String transactionId)Returns aReadOptionthat specifies transaction id, allowing Datastore to execute aQueryin this transaction.Methods in com.google.cloud.datastore that return types with arguments of type ReadOption Modifier and Type Method Description List<ReadOption>ReadOption.QueryAndReadOptions. getReadOptions()Methods in com.google.cloud.datastore with parameters of type ReadOption Modifier and Type Method Description List<Entity>Datastore. fetch(Iterable<Key> keys, ReadOption... options)Returns a list with a value for each given key (ordered by input).EntityDatastore. get(Key key, ReadOption... options)Iterator<Entity>Datastore. get(Iterable<Key> keys, ReadOption... options)<T> QueryResults<T>Datastore. run(Query<T> query, ReadOption... options)Submits aQueryand returns its result.default AggregationResultsDatastore. runAggregation(AggregationQuery query, ReadOption... options)Submits aAggregationQueryand returnsAggregationResults.Method parameters in com.google.cloud.datastore with type arguments of type ReadOption Modifier and Type Method Description static <Q extends Query<?>>
ReadOption.QueryAndReadOptions<Q>ReadOption.QueryAndReadOptions. create(Q query, List<ReadOption> readOptions)Optional<ReadOptions>ReadOptionProtoPreparer. prepare(List<ReadOption> options) -
Uses of ReadOption in com.google.cloud.datastore.execution
Methods in com.google.cloud.datastore.execution with parameters of type ReadOption Modifier and Type Method Description AggregationResultsAggregationQueryExecutor. execute(AggregationQuery query, ReadOption... readOptions)OUTPUTQueryExecutor. execute(INPUT query, ReadOption... readOptions)
-