Class StandardMonitorJob
java.lang.Object
org.sentrysoftware.metricshub.engine.connector.model.monitor.AbstractMonitorJob
org.sentrysoftware.metricshub.engine.connector.model.monitor.StandardMonitorJob
- All Implemented Interfaces:
Serializable,MonitorJob
Represents a standard monitor job.
This class implements the MonitorJob interface and is designed for standard monitor jobs that include both
discovery and collect tasks.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStandardMonitorJob(Set<String> keys, Discovery discovery, AbstractCollect collect) Creates aStandardMonitorJobwith the specified keys, discovery, and collect instances. -
Method Summary
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.sentrysoftware.metricshub.engine.connector.model.monitor.MonitorJob
getKeys
-
Constructor Details
-
StandardMonitorJob
Creates aStandardMonitorJobwith the specified keys, discovery, and collect instances.- Parameters:
keys- The set of keys for the monitor job.discovery- The discovery instance for the monitor job.collect- The collect instance for the monitor job.
-