Interface ConnectorFactory

All Known Subinterfaces:
InboundConnector, IncomingConnectorFactory, OutboundConnector, OutgoingConnectorFactory

public interface ConnectorFactory
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The channel-name attribute name.
    static final String
    The connector 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 an incoming channel.
    static final String
    Prefix used in the MicroProfile Config to configure an outgoing channel.
  • Field Details

    • CHANNEL_NAME_ATTRIBUTE

      static final String CHANNEL_NAME_ATTRIBUTE
      The channel-name attribute name. This attribute is injected by the reactive messaging implementation into the Config object passed to the IncomingConnectorFactory and OutgoingConnectorFactory. The value associated with this attribute is the name of the channel being created.
      See Also:
    • CONNECTOR_ATTRIBUTE

      static final String CONNECTOR_ATTRIBUTE
      The connector attribute name. This attribute is part of the Config passed to the IncomingConnectorFactory and OutgoingConnectorFactory 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 the Connector qualifier.
      See Also:
    • INCOMING_PREFIX

      static final String INCOMING_PREFIX
      Prefix used in the MicroProfile Config to configure an incoming channel.
      See Also:
    • OUTGOING_PREFIX

      static final String OUTGOING_PREFIX
      Prefix used in the MicroProfile Config to configure an outgoing channel.
      See Also:
    • 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: