Interface ConnectorFactory
-
- All Known Subinterfaces:
IncomingConnectorFactory
,OutgoingConnectorFactory
- All Known Implementing Classes:
AmqpConnector
,CamelConnector
,HttpConnector
,InMemoryConnector
,JmsConnector
,KafkaConnector
,MqttConnector
,MqttServerConnector
,PubSubConnector
,SnsConnector
,VertxEventBusConnector
public interface ConnectorFactory
Parent class forIncomingConnectorFactory
andOutgoingConnectorFactory
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
CHANNEL_NAME_ATTRIBUTE
Thechannel-name
attribute name.static String
CONNECTOR_ATTRIBUTE
Theconnector
attribute name.static String
CONNECTOR_PREFIX
Prefix used in the MicroProfile Config to configure properties shared by all the channels associated with a specific connector.static String
INCOMING_PREFIX
Prefix used in the MicroProfile Config to configure anincoming
channel.static String
OUTGOING_PREFIX
Prefix used in the MicroProfile Config to configure anoutgoing
channel.
-
-
-
Field Detail
-
CHANNEL_NAME_ATTRIBUTE
static final String CHANNEL_NAME_ATTRIBUTE
Thechannel-name
attribute name. This attribute is injected by the reactive messaging implementation into theConfig
object passed to theIncomingConnectorFactory
andOutgoingConnectorFactory
. The value associated with this attribute is the name of the channel being created.- See Also:
- Constant Field Values
-
CONNECTOR_ATTRIBUTE
static final String CONNECTOR_ATTRIBUTE
Theconnector
attribute name. This attribute is part of theConfig
passed to theIncomingConnectorFactory
andOutgoingConnectorFactory
when a new channel is created. It indicates the name of the connector. Note that each channel configured from the MicroProfile Config support must provide this attribute to indicate which connector is used. It must match the name given to theConnector
qualifier.- See Also:
- Constant Field Values
-
INCOMING_PREFIX
static final String INCOMING_PREFIX
Prefix used in the MicroProfile Config to configure anincoming
channel.- See Also:
- Constant Field Values
-
OUTGOING_PREFIX
static final String OUTGOING_PREFIX
Prefix used in the MicroProfile Config to configure anoutgoing
channel.- See Also:
- Constant Field Values
-
CONNECTOR_PREFIX
static final String CONNECTOR_PREFIX
Prefix used in the MicroProfile Config to configure properties shared by all the channels associated with a specific connector.- See Also:
- Constant Field Values
-
-