Notice: Over the next few months, we're reorganizing the App Engine documentation site to make it easier to find content and better align with the rest of Google Cloud products. The same content will be available, but the navigation will now match the rest of the Cloud products. If you have feedback or questions as you navigate the site, click Send Feedback.

AsyncDatastoreService (Google App Engine API for Java)

com.google.appengine.api.datastore

Interface AsyncDatastoreService

  • All Superinterfaces:
    BaseDatastoreService
    All Known Implementing Classes:
    AdminDatastoreService


    public interface AsyncDatastoreService
    extends BaseDatastoreService
    An asynchronous version of DatastoreService. All methods return immediately and provide Futures as their return values.

    The key difference between implementations of AsyncDatastoreService and implementations of DatastoreService is that async implementations do not perform implicit transaction management. The reason is that implicit transaction management requires automatic commits of some transactions, and without some sort of callback mechanism there is no way to determine that a put/get/delete that has been implicitly enrolled in a transaction is complete and therefore ready to be committed. See ImplicitTransactionManagementPolicy for more information.