| org.apache.james.util.watchdog.Watchdog
All known Subclasses: org.apache.james.util.watchdog.InaccurateTimeoutWatchdog,
Watchdog | public interface Watchdog (Code) | | This interface represents an abstract watchdog process that serves to
monitor a situation and triggers an action under an implementation-specific
trigger condition.
|
Method Summary | |
void | reset() Reset this Watchdog. | void | start() Start this Watchdog, causing it to begin monitoring. | void | stop() Stop this Watchdog, terminating the monitoring condition. |
reset | void reset()(Code) | | Reset this Watchdog. Resets any conditions in the implementations
(time to expiration, etc.) to their original values
|
start | void start()(Code) | | Start this Watchdog, causing it to begin monitoring. The Watchdog can
be stopped and restarted.
|
stop | void stop()(Code) | | Stop this Watchdog, terminating the monitoring condition. The monitor
can be restarted with a call to startWatchdog.
|
|
|