|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovyx.gpars.dataflow.operator.component.GracefulShutdownMonitor
public final class GracefulShutdownMonitor
The monitor will orchestrate a graceful shutdown, when its shutdownNetwork() method is called. For this mechanism to work, all selectors/operators in the network have to have their own instance of GracefulShutdownListener added and these listeners have to share the same GracefulShutdownMonitor instance. Each listener observes the activity in the input channels of its corresponding operator/selector. Upon graceful shutdown initialization, the listeners also start watching the state of their operators/selectors. The GracefulShutdownMonitor then repeatedly watches, whether listeners report activity in the operators. When the activity ceases, the monitor will poll all listeners about the state of their operator/selector and its input channels. If all listeners report no activity and no incoming messages, the monitor can safely terminate all operators.
Field Summary | |
---|---|
private static long |
DEFAULT_DELAY
|
private long |
delay
|
private java.util.Collection<GracefulShutdownListener> |
listeners
All listeners that watch the operators/selectors in the network |
private java.util.concurrent.atomic.AtomicBoolean |
notificationArrivedFlag
Indicates, whether some activity has been reported since last time |
private DataflowVariable<java.lang.Boolean> |
result
The final latch that indicates the network has been shutdown |
private boolean |
shutdownFlag
Indicates whether shutdown has been initialized |
private java.util.Timer |
timer
A times used to repeatedly poll the state of the network |
Constructor Summary | |
---|---|
GracefulShutdownMonitor()
Uses the default timer delay |
|
GracefulShutdownMonitor(long delay)
Allows to use a customized delay |
Method Summary | |
---|---|
private boolean |
checkWhetherAnyEventsHaveArrived()
Checks the notification flag whether there has been some activity since last timer run. |
(package private) void |
onTimer()
Checks, whether the network is no longer active. |
void |
registerProcessorListener(GracefulShutdownListener listener)
Invoked by GracefulShutdownListeners, which listen on operators/selectors for lifecycle events, to get registered with the monitor. |
Promise<java.lang.Boolean> |
shutdownNetwork()
Initializes the shutdown process. |
private void |
schedule()
Clears the notification flag so as we know whether some activity happens between subsequent checks. |
void |
stateChanged()
Invoked whenever a processor changes state |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final long DEFAULT_DELAY
private final long delay
private boolean shutdownFlag
private final java.util.concurrent.atomic.AtomicBoolean notificationArrivedFlag
private final DataflowVariable<java.lang.Boolean> result
private final java.util.Collection<GracefulShutdownListener> listeners
private final java.util.Timer timer
Constructor Detail |
---|
public GracefulShutdownMonitor()
public GracefulShutdownMonitor(long delay)
delay
- A timeout in milliseconds to wait between two subsequent polls on processors' state.
Lower values will reduce the wait time for network shutdown,
but maz have impact on the performance when the shutdown process gets initialized.Method Detail |
---|
public void stateChanged()
stateChanged
in interface OperatorStateMonitor
public void registerProcessorListener(GracefulShutdownListener listener)
registerProcessorListener
in interface OperatorStateMonitor
listener
- The listener to registerpublic Promise<java.lang.Boolean> shutdownNetwork()
void onTimer()
private boolean checkWhetherAnyEventsHaveArrived()
private void schedule()
|
Copyright © 2008–2012 Václav Pech. All Rights Reserved. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |