public final class DatastoreServiceFactory
extends java.lang.Object
| Constructor and Description |
|---|
DatastoreServiceFactory()
Deprecated.
Exposed by accident, do not instantiate.
|
| Modifier and Type | Method and Description |
|---|---|
static AsyncDatastoreService |
getAsyncDatastoreService()
Creates an
AsyncDatastoreService using the default config (
DatastoreServiceConfig.Builder.withDefaults()). |
static AsyncDatastoreService |
getAsyncDatastoreService(DatastoreServiceConfig config)
Creates an
AsyncDatastoreService using the provided config. |
static DatastoreService |
getDatastoreService()
Creates a
DatastoreService using the default config (
DatastoreServiceConfig.Builder.withDefaults()). |
static DatastoreService |
getDatastoreService(DatastoreConfig oldConfig)
Deprecated.
Use
getDatastoreService(DatastoreServiceConfig) instead. |
static DatastoreService |
getDatastoreService(DatastoreServiceConfig config)
Creates a
DatastoreService using the provided config. |
static DatastoreConfig |
getDefaultDatastoreConfig()
Deprecated.
Use
DatastoreServiceConfig.Builder.withDefaults() instead. |
@Deprecated public DatastoreServiceFactory()
public static DatastoreService getDatastoreService(DatastoreServiceConfig config)
DatastoreService using the provided config.public static AsyncDatastoreService getAsyncDatastoreService(DatastoreServiceConfig config)
AsyncDatastoreService using the provided config. The async datastore service
does not support implicit transaction management policy
ImplicitTransactionManagementPolicy.AUTO.java.lang.IllegalArgumentException - If the provided DatastoreServiceConfig has an implicit
transaction management policy of ImplicitTransactionManagementPolicy.AUTO.public static DatastoreService getDatastoreService()
DatastoreService using the default config (
DatastoreServiceConfig.Builder.withDefaults()).public static AsyncDatastoreService getAsyncDatastoreService()
AsyncDatastoreService using the default config (
DatastoreServiceConfig.Builder.withDefaults()).@Deprecated public static DatastoreService getDatastoreService(DatastoreConfig oldConfig)
getDatastoreService(DatastoreServiceConfig) instead.DatastoreService using the provided config.@Deprecated public static DatastoreConfig getDefaultDatastoreConfig()
DatastoreServiceConfig.Builder.withDefaults() instead.