美文网首页
tocmat 启动时主要线程梳理

tocmat 启动时主要线程梳理

作者: 那谁319 | 来源:发表于2019-05-20 23:01 被阅读0次

    tocmat 启动时主要线程

    "Main” 
        主线程
    
    "ajp-bio-8009-Acceptor-0"/"http-bio-8080-Acceptor-0"
         Thread t = new Thread(acceptors[i], getName() + "-Acceptor-" + i);
    
    "ajp-bio-8009-exec-1"/"http-bio-8080-exec-10"
         TaskThreadFactory tf = new TaskThreadFactory(getName() + "-exec-", daemon,   getThreadPriority());
    
    ContainerBackgroundProcessor[StandardEngine[Catalina]]
          thread = new Thread(new ContainerBackgroundProcessor(), "ContainerBackgroundProcessor[" + toString() + "]");
    
    "ajp-bio-8009-AsyncTimeout"/"http-bio-8080-AsyncTimeout"
        Thread timeoutThread = new Thread(new AsyncTimeout(), getName() + "-AsyncTimeout");
    
    "Catalina-startStop-1”/"localhost-startStop-1”
         startStopExecutor = new ThreadPoolExecutor(getStartStopThreadsInternal(), getStartStopThreadsInternal(), 10, TimeUnit.SECONDS,�startStopQueue,new StartStopThreadFactory(getName() + "-startStop-"));
    

    相关文章

      网友评论

          本文标题:tocmat 启动时主要线程梳理

          本文链接:https://www.haomeiwen.com/subject/zxfrzqtx.html