Interface ConnectorFactory
- All Known Subinterfaces:
IncomingConnectorFactory
,OutgoingConnectorFactory
public interface ConnectorFactory
Parent class for
IncomingConnectorFactory
and OutgoingConnectorFactory
.-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Thechannel-name
attribute name.static final String
Theconnector
attribute name.static final String
Prefix used in the MicroProfile Config to configure properties shared by all the channels associated with a specific connector.static final String
Prefix used in the MicroProfile Config to configure anincoming
channel.static final String
Prefix used in the MicroProfile Config to configure anoutgoing
channel.
-
Field Details
-
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:
-
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:
-
INCOMING_PREFIX
Prefix used in the MicroProfile Config to configure anincoming
channel.- See Also:
-
OUTGOING_PREFIX
Prefix used in the MicroProfile Config to configure anoutgoing
channel.- See Also:
-
CONNECTOR_PREFIX
Prefix used in the MicroProfile Config to configure properties shared by all the channels associated with a specific connector.- See Also:
-