com.googlecode.objectify.impl.PrivateAsyncTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify Show documentation
Show all versions of objectify Show documentation
The simplest convenient interface to the Google App Engine datastore
package com.googlecode.objectify.impl;
import com.googlecode.objectify.Result;
/**
* A private interface for manipulating transactions. This is a (hopefully) temporary hack that is not exposed
* in the API.
*/
public interface PrivateAsyncTransaction extends AsyncTransaction {
void runCommitListeners();
void enlist(final Result result);
}