美文网首页
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 启动时主要线程梳理

    tocmat 启动时主要线程

  • 第四章 并发编程

    4.1 线程 线程是运行时执行的一组指令序列 每个进程至少应包含一个线程 在iOS中,进程启动时的主要线程通常称作...

  • Android重拾 — handle

    Handler的定义: 主要接受子线程发送的数据, 并用此数据配合主线程更新UI 解释: 当应用程序启动时,And...

  • 线程池

    主要用于概念扫盲和梳理。本文主要为什么使用线程池,ThreadPoolExecutor构造函数,常见的线程池种类。...

  • iOS 高性能iOS应用开发的笔记(二)

    二 线程 线程是运行时执行的一组指令序列。每个进程至少应包含一个线程。进程启动时的主要线程通常被称作主线程。所有的...

  • ethereum挖矿流程

    本文主要梳理eth挖矿的代码流程结构。 geth的挖矿逻辑都由miner.Miner结构管理,在程序启动时,min...

  • binder 驱动分析

    一 binder线程池 hidl service启动时要设置binder的线程池:configureRpcThre...

  • java中守护线程与用户线程

    Java线程分为两类分别为daemon线程(守护线程)和User线程(用户线程),在JVM启动时候会调用main函...

  • oc中多线程

    关于多线程,在编程中那是必不可少的,现在我们就好好梳理一下多线程. 在 iOS 中其实目前主要有3套多线程方案,他...

  • Java再回顾(1)—线程池回顾与思考

    概述 本文是针对java线程池的回顾与思考,主要是围绕java线程池的思路梳理与知识总结。长文预警(写这篇真的累到...

网友评论

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

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