Interface ThreadRunner


  • public interface ThreadRunner
    The ThreadRunner interface wraps starting a thread. This is used in an application server to use the method of the application server to start a new thread.
    • Method Detail

      • startThread

        void startThread​(java.lang.Thread t)
                  throws java.lang.Exception
        Start a thread.
        Parameters:
        t - the thread to start.
        Throws:
        java.lang.Exception - if starting the thread fails.