Package org.epics.ca
Interface Monitor<T>
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
MonitorRequest
public interface Monitor<T> extends java.lang.AutoCloseable
-
-
Field Summary
Fields Modifier and Type Field Description static intALARM_MASKstatic intLOG_MASKstatic intPROPERTY_MASKstatic intVALUE_MASK
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()static intgetMask(boolean valueChangeEvent, boolean logEvent, boolean alarmEvent, boolean propertyChangeEvent)
-
-
-
Field Detail
-
VALUE_MASK
static final int VALUE_MASK
- See Also:
- Constant Field Values
-
LOG_MASK
static final int LOG_MASK
- See Also:
- Constant Field Values
-
ALARM_MASK
static final int ALARM_MASK
- See Also:
- Constant Field Values
-
PROPERTY_MASK
static final int PROPERTY_MASK
- See Also:
- Constant Field Values
-
-