Package | Description |
---|---|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
com.hazelcast.datastore |
This package contains code handling external data stores.
|
Modifier and Type | Method and Description |
---|---|
ExternalDataStoreConfig |
Config.findExternalDataStoreConfig(String name)
Returns a read-only
ExternalDataStoreConfig
configuration for the given name. |
ExternalDataStoreConfig |
Config.getExternalDataStoreConfig(String name)
Returns the external data store configuration for the given name, creating one
if necessary and adding it to the collection of known configurations.
|
ExternalDataStoreConfig |
ExternalDataStoreConfig.setClassName(String className)
Sets the name for the
ExternalDataStoreFactory implementation class |
ExternalDataStoreConfig |
ExternalDataStoreConfig.setName(String name)
Sets the name of this external data store, the name must be unique.
|
ExternalDataStoreConfig |
ExternalDataStoreConfig.setProperties(Properties properties)
Sets the properties of a datastore.
|
ExternalDataStoreConfig |
ExternalDataStoreConfig.setProperty(String key,
String value)
Sets a single property.
|
ExternalDataStoreConfig |
ExternalDataStoreConfig.setShared(boolean shared)
true if an instance of the external data store will be reused. |
Modifier and Type | Method and Description |
---|---|
Map<String,ExternalDataStoreConfig> |
Config.getExternalDataStoreConfigs()
Returns the map of external data store configurations, mapped by config name.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.addExternalDataStoreConfig(ExternalDataStoreConfig externalDataStoreConfig)
Adds an external data store configuration.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.setExternalDataStoreConfigs(Map<String,ExternalDataStoreConfig> externalDataStoreConfigs)
Sets the map of external data store configurations, mapped by config name.
|
Constructor and Description |
---|
ExternalDataStoreConfig(ExternalDataStoreConfig config) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcDataStoreFactory.init(ExternalDataStoreConfig config) |
void |
ExternalDataStoreFactory.init(ExternalDataStoreConfig config)
Initialize factory with the config
|
Copyright © 2022 Hazelcast, Inc.. All rights reserved.