Class ConnectorManager
- java.lang.Object
-
- org.opennms.netmgt.telemetry.daemon.ConnectorManager
-
public class ConnectorManager extends java.lang.Object
The ConnectorManager is responsible for starting/stopping connectors that connect to the target agents. Connectors are initially created with services that are currently populated in the database and new connectors are started or stopped when services are added or removed. TheConnector
should make a best effort to maintain the connection with the target agent until it is stopped, meaning it should retry connecting on failure, etc... No attempt will be made by this manager to restart the connector.- Author:
- jwhite
-
-
Constructor Summary
Constructors Constructor Description ConnectorManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setEntityScopeProvider(EntityScopeProvider entityScopeProvider)
void
start(TelemetrydConfig config)
void
stop()
-
-
-
Method Detail
-
start
public void start(TelemetrydConfig config)
-
stop
public void stop()
-
setEntityScopeProvider
public void setEntityScopeProvider(EntityScopeProvider entityScopeProvider)
-
-