Interface IDatastoreServiceFactory
-
public interface IDatastoreServiceFactory
This interface should be implemented by providers of theDatastoreService
and registered withServiceFactoryFactory
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncDatastoreService
getAsyncDatastoreService(DatastoreServiceConfig config)
Creates anAsyncDatastoreService
using the provided config.DatastoreService
getDatastoreService(DatastoreServiceConfig config)
Creates aDatastoreService
using the provided config.
-
-
-
Method Detail
-
getDatastoreService
DatastoreService getDatastoreService(DatastoreServiceConfig config)
Creates aDatastoreService
using the provided config.
-
getAsyncDatastoreService
AsyncDatastoreService getAsyncDatastoreService(DatastoreServiceConfig config)
Creates anAsyncDatastoreService
using the provided config.
-
-