Interface ExecutableComponent.Signals
-
- Enclosing interface:
- ExecutableComponent
public static interface ExecutableComponent.SignalsDefinition of the constants for signals that could be interpreted by execution environments. These may be extended to allow further signals. When extending make sure not to use the same values for the constants!
-
-
Field Summary
Fields Modifier and Type Field Description static intALIVEThe signal to check for whether an executable component is still alive.static intCLOSEThe component should be closed normally (value is 7 << 0).static intFAILThe component should be failed/aborted (value is 7 << 10).static intKILLThe component has received a kill request (value is 7 << 11).static intNO_ALIVEThe signal to indicate that an executable component is no longer alive.static intNO_SIGNALThere has not been a signal yet (value isInteger.MIN_VALUE).static intRESETThe component should be reset (value is 7 << 2).static intSUSPENDThe component should be suspended (value is 7 << 1).
-
-
-
Field Detail
-
FAIL
static final int FAIL
The component should be failed/aborted (value is 7 << 10).- See Also:
- Constant Field Values
-
KILL
static final int KILL
The component has received a kill request (value is 7 << 11).- See Also:
- Constant Field Values
-
RESET
static final int RESET
The component should be reset (value is 7 << 2).- See Also:
- Constant Field Values
-
SUSPEND
static final int SUSPEND
The component should be suspended (value is 7 << 1).- See Also:
- Constant Field Values
-
CLOSE
static final int CLOSE
The component should be closed normally (value is 7 << 0).- See Also:
- Constant Field Values
-
NO_SIGNAL
static final int NO_SIGNAL
There has not been a signal yet (value isInteger.MIN_VALUE).- See Also:
- Constant Field Values
-
ALIVE
static final int ALIVE
The signal to check for whether an executable component is still alive.- See Also:
- Constant Field Values
-
NO_ALIVE
static final int NO_ALIVE
The signal to indicate that an executable component is no longer alive. Actually this is no real signal but the absence of a signal. It indicates, that the executable component has not responded to anALIVEsignal.- See Also:
- Constant Field Values
-
-