Class ShutdownThread

  • All Implemented Interfaces:
    java.lang.Runnable

    @Deprecated(since="2021-05-27")
    public class ShutdownThread
    extends java.lang.Thread
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    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 java.lang.Thread

        java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
    • Field Summary

      • Fields inherited from class java.lang.Thread

        MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static void deregister​(LifeCycle lifeCycle)
      Deprecated.
       
      static ShutdownThread getInstance()
      Deprecated.
      Returns the instance of the singleton
      static boolean isRegistered​(LifeCycle lifeCycle)
      Deprecated.
       
      static void register​(int index, LifeCycle... lifeCycles)
      Deprecated.
       
      static void register​(LifeCycle... lifeCycles)
      Deprecated.
       
      void run()
      Deprecated.
       
      • Methods inherited from class java.lang.Thread

        activeCount, checkAccess, countStackFrames, currentThread, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, onSpinWait, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, suspend, toString, yield
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • getInstance

        public static ShutdownThread getInstance()
        Deprecated.
        Returns the instance of the singleton
        Returns:
        the singleton instance of the ShutdownThread
      • register

        public static void register​(LifeCycle... lifeCycles)
        Deprecated.
      • register

        public static void register​(int index,
                                    LifeCycle... lifeCycles)
        Deprecated.
      • deregister

        public static void deregister​(LifeCycle lifeCycle)
        Deprecated.
      • isRegistered

        public static boolean isRegistered​(LifeCycle lifeCycle)
        Deprecated.
      • run

        public void run()
        Deprecated.
        Specified by:
        run in interface java.lang.Runnable
        Overrides:
        run in class java.lang.Thread