Class Connector

java.lang.Object
fr.codinbox.connector.velocity.Connector

public class Connector extends Object
Static service locator for accessing connector services on the Velocity platform.

This class provides global access to all four connector services. Services are initialized by the Velocity ConnectorPlugin at startup and should not be set externally.

Usage example:


 RedisConnectorService redis = Connector.getRedisService();
 DatabaseConnectorService db = Connector.getDatabaseService();
 RabbitMQConnectorService rabbit = Connector.getRabbitMQService();
 KafkaConnectorService kafka = Connector.getKafkaService();