abstract class ConnectorBase : Connector
(source)
Base implementation of Connector. Connector implementations should usually extend this class.
<init> |
Base implementation of Connector. Connector implementations should usually extend this class. ConnectorBase(connectorType: ConnectorType, supportedFeatures: Set<ConnectorFeature> = emptySet()) |
connectorType |
The type of the connector. open val connectorType: ConnectorType |
supportedFeatures |
Supported features. open val supportedFeatures: Set<ConnectorFeature> |
toString |
Returns connectorType.toString method. open fun toString(): String |
AlexaConnector |
Connector for Amazon Alexa. class AlexaConnector : ConnectorBase |
GAConnector |
class GAConnector : ConnectorBase |
MessengerConnector |
Contains built-in checks to ensure that two MessageRequest for the same recipient are sent sequentially. class MessengerConnector : ConnectorBase |
SlackConnector |
class SlackConnector : ConnectorBase |
WebConnector |
class WebConnector : ConnectorBase, OrchestrationConnector |
WhatsAppConnector |
class WhatsAppConnector : ConnectorBase |