Interface IDatastoreServiceFactory (2.0.0)

public interface IDatastoreServiceFactory

This interface should be implemented by providers of the DatastoreService and registered with com.google.appengine.spi.ServiceFactoryFactory.

Methods

getAsyncDatastoreService(DatastoreServiceConfig config)

public abstract AsyncDatastoreService getAsyncDatastoreService(DatastoreServiceConfig config)

Creates an AsyncDatastoreService using the provided config.

Parameter
Name Description
config DatastoreServiceConfig
Returns
Type Description
AsyncDatastoreService

getDatastoreService(DatastoreServiceConfig config)

public abstract DatastoreService getDatastoreService(DatastoreServiceConfig config)

Creates a DatastoreService using the provided config.

Parameter
Name Description
config DatastoreServiceConfig
Returns
Type Description
DatastoreService