Package | Description |
---|---|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
com.hazelcast.datalink |
This package contains code handling data links.
|
com.hazelcast.jet.kafka |
Apache Kafka reader/writer support for Hazelcast Jet.
|
com.hazelcast.jet.mongodb.datalink |
Contains classes related to Mongo DB Data Link.
|
Modifier and Type | Method and Description |
---|---|
DataLinkConfig |
Config.findDataLinkConfig(String name)
Returns a read-only
DataLinkConfig
configuration for the given name. |
DataLinkConfig |
Config.getDataLinkConfig(String name)
Returns the data link configuration for the given name, creating one
if necessary and adding it to the collection of known configurations.
|
DataLinkConfig |
DataLinkConfig.setClassName(String className)
Sets the name for the
DataLink implementation class |
DataLinkConfig |
DataLinkConfig.setName(String name)
Sets the name of this data link, the name must be unique.
|
DataLinkConfig |
DataLinkConfig.setProperties(Properties properties)
Sets the properties of a data link.
|
DataLinkConfig |
DataLinkConfig.setProperty(String key,
String value)
Sets a single property.
|
DataLinkConfig |
DataLinkConfig.setShared(boolean shared)
true if an instance of the data link will be reused. |
Modifier and Type | Method and Description |
---|---|
Map<String,DataLinkConfig> |
Config.getDataLinkConfigs()
Returns the map of data link configurations, mapped by config name.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.addDataLinkConfig(DataLinkConfig dataLinkConfig)
Adds an data link configuration.
|
Modifier and Type | Method and Description |
---|---|
Config |
Config.setDataLinkConfigs(Map<String,DataLinkConfig> dataLinkConfigs)
Sets the map of data link configurations, mapped by config name.
|
Constructor and Description |
---|
DataLinkConfig(DataLinkConfig config) |
Modifier and Type | Method and Description |
---|---|
DataLinkConfig |
DataLinkBase.getConfig() |
DataLinkConfig |
DataLink.getConfig()
Returns the configuration of this DataLink.
|
Constructor and Description |
---|
DataLinkBase(DataLinkConfig config) |
HazelcastDataLink(DataLinkConfig dataLinkConfig) |
JdbcDataLink(DataLinkConfig config) |
Constructor and Description |
---|
KafkaDataLink(DataLinkConfig config)
Create
KafkaDataLink based on given config |
Modifier and Type | Method and Description |
---|---|
static DataLinkConfig |
MongoDataLink.mongoDataLinkConf(String name,
String connectionString)
Helper method to create new
MongoDataLink with given name and connection string. |
Constructor and Description |
---|
MongoDataLink(DataLinkConfig config)
Creates a new data link based on given config.
|
Copyright © 2023 Hazelcast, Inc.. All rights reserved.