brooklyn.event.basic.BasicNotificationSensor Maven / Gradle / Ivy
package brooklyn.event.basic;
import brooklyn.event.Sensor;
/**
* A {@link Sensor} used to notify subscribers about events.
*/
public class BasicNotificationSensor extends BasicSensor {
private static final long serialVersionUID = -7670909215973264600L;
public BasicNotificationSensor(Class type, String name) {
this(type, name, name);
}
public BasicNotificationSensor(Class type, String name, String description) {
super(type, name, description);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy