Class ShutdownThread
java.lang.Object
java.lang.Thread
org.eclipse.jetty.util.thread.ShutdownThread
- All Implemented Interfaces:
Runnable
ShutdownThread is a shutdown hook thread implemented as
singleton that maintains a list of lifecycle instances
that are registered with it and provides ability to stop
these lifecycles upon shutdown of the Java Virtual Machine
-
Nested Class Summary
Nested classes/interfaces inherited from class Thread
Thread.Builder, Thread.State, Thread.UncaughtExceptionHandler -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate booleanprivate static final ShutdownThreadprivate static final LoggerFields inherited from class Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateDefault constructor for the singleton Registers the instance as shutdown hook with the Java Runtime -
Method Summary
Modifier and TypeMethodDescriptionstatic voidderegister(LifeCycle lifeCycle) static ShutdownThreadReturns the instance of the singletonprivate voidhook()static booleanisRegistered(LifeCycle lifeCycle) static voidstatic voidvoidrun()private voidunhook()Methods inherited from class Thread
activeCount, checkAccess, clone, currentThread, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, isVirtual, join, join, join, join, ofPlatform, ofVirtual, onSpinWait, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, sleep, start, startVirtualThread, stop, threadId, toString, yield
-
Field Details
-
LOG
-
_thread
-
_hooked
private boolean _hooked -
_lifeCycles
-
-
Constructor Details
-
ShutdownThread
private ShutdownThread()Default constructor for the singleton Registers the instance as shutdown hook with the Java Runtime
-
-
Method Details
-
hook
private void hook() -
unhook
private void unhook() -
getInstance
Returns the instance of the singleton- Returns:
- the singleton instance of the
ShutdownThread
-
register
-
register
-
deregister
-
isRegistered
-
run
-