Uses of Class
com.google.cloud.datastore.ReadOption
Packages that use ReadOption
Package
Description
A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications.
-
Uses of ReadOption in com.google.cloud.datastore
Subclasses of ReadOption in com.google.cloud.datastoreModifier and TypeClassDescriptionstatic final classSpecifies eventual consistency for reads from Datastore.static final classReads entities as they were at the given time.Methods in com.google.cloud.datastore that return ReadOptionModifier and TypeMethodDescriptionstatic 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 ReadOptionMethods in com.google.cloud.datastore with parameters of type ReadOptionModifier and TypeMethodDescriptionDatastore.fetch(Iterable<Key> keys, ReadOption... options) Returns a list with a value for each given key (ordered by input).Datastore.get(Key key, ReadOption... options) Datastore.get(Iterable<Key> keys, ReadOption... options) <T> QueryResults<T>Datastore.run(Query<T> query, ExplainOptions explainOptions, ReadOption... options) Submits aQuerywith specifiedExplainOptionsand returns its result.<T> QueryResults<T>Datastore.run(Query<T> query, ReadOption... options) Submits aQueryand returns its result.Datastore.runAggregation(AggregationQuery query, ExplainOptions explainOptions, ReadOption... options) Datastore.runAggregation(AggregationQuery query, ReadOption... options) Submits aAggregationQueryand returnsAggregationResults.Method parameters in com.google.cloud.datastore with type arguments of type ReadOptionModifier and TypeMethodDescriptionstatic <Q extends Query<?>>
ReadOption.QueryConfig<Q>ReadOption.QueryConfig.create(Q query, ExplainOptions explainOptions, List<ReadOption> 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 ReadOptionModifier and TypeMethodDescriptionAggregationQueryExecutor.execute(AggregationQuery query, ExplainOptions explainOptions, ReadOption... readOptions) QueryExecutor.execute(INPUT query, ExplainOptions explainOptions, ReadOption... readOptions)