org.eclipse.jetty.util.thread
类 ShutdownThread

java.lang.Object
  继承者 java.lang.Thread
      继承者 org.eclipse.jetty.util.thread.ShutdownThread
所有已实现的接口:
Runnable

public class ShutdownThread
extends Thread

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


嵌套类摘要
 
从类 java.lang.Thread 继承的嵌套类/接口
Thread.State, Thread.UncaughtExceptionHandler
 
字段摘要
 
从类 java.lang.Thread 继承的字段
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
方法摘要
static void deregister(LifeCycle lifeCycle)
           
static ShutdownThread getInstance()
          Returns the instance of the singleton
static void register(int index, LifeCycle... lifeCycles)
           
static void register(LifeCycle... lifeCycles)
           
 void run()
           
 
从类 java.lang.Thread 继承的方法
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

方法详细信息

getInstance

public static ShutdownThread getInstance()
Returns the instance of the singleton

返回:
the singleton instance of the ShutdownThread

register

public static void register(LifeCycle... lifeCycles)

register

public static void register(int index,
                            LifeCycle... lifeCycles)

deregister

public static void deregister(LifeCycle lifeCycle)

run

public void run()
指定者:
接口 Runnable 中的 run
覆盖:
Thread 中的 run


Copyright © 2013. All Rights Reserved.