public interface DatastoreReader
Entity get(Key key)
DatastoreException - upon failureIterator<Entity> get(Key... keys)
Entity for each given Key that exists in the Datastore. The order of
the result is unspecified. Results are loaded lazily, so it is possible to get a
DatastoreException from the returned Iterator's
hasNext or next methods.DatastoreException - upon failureget(Key)List<Entity> fetch(Key... keys)
null values are
returned for nonexistent keys. When possible prefer using get(Key...) to avoid eagerly
loading the results.<T> QueryResults<T> run(Query<T> query)
Query and returns its result.DatastoreException - upon failureCopyright © 2016 Google. All rights reserved.