okHttp3 筆記(1)OKhttp3 入口分析

public synchronized ExecutorService executorService() {
    if (executorService == null) {
      executorService = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60, TimeUnit.SECONDS,
          new SynchronousQueue<Runnable>(), Util.threadFactory("OkHttp Dispatcher", false));
    }
    return executorService;
  }

ThreadPoolExecutor的參數(shù)

  • corePoolSize :0 核心并發(fā)數(shù)啥酱,就是在線程池不飽和時挡爵,線程池可擁有的線程數(shù)姆泻。如果是0的話火窒,空閑一段時間后所有線程將全部被銷毀硼补。
    -maximumPoolSize:線程池最大線程容量。
    -keepAliveTIme: 當總線程數(shù)大于核心線程數(shù) corePoolSize 那部分線程存活的時間熏矿。
    -BlockingQueue<Runnable>:

這個參數(shù)被稱為阻塞隊列(生產(chǎn)者消費者模型)

1.ArrayBlockingQueue
2.LinkedBlockingQueue
上此兩個要注意指定最大容量已骇,如果生產(chǎn)者的效率很高,會把隊列緩存占滿票编,然而沒有指定最大值會消耗掉內(nèi)存
3.PriorityBlockingQueue
4.DelayQueue
5.SynchronousQueue
它是一個不存儲元素的阻塞隊列褪储。每個插入操作必須等待另一個線程的移除操作,同樣移除操作也是如此慧域。因此隊列中沒有存儲一個元素鲤竹。(多線程打印出0101010101)

練習(xí)下隊列,看有毛用

public class BlockQueueTest {

    private static final int QUEUESIZE= 1;
    private ArrayBlockingQueue<Integer> integers;

    @Test
    public void BlockQueueTest(){
        integers = new ArrayBlockingQueue<>(QUEUESIZE);
        Consumer consumer = new Consumer();
        Producer producer = new Producer();
        consumer.start();
        producer.start();
    }

    class Consumer extends Thread{
        @Override
        public void run() {
            super.run();
            while (true)
            {
                try {
                    Integer take = integers.take();
                    System.out.println("消費元素:"+take);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    class Producer extends Thread{
        @Override
        public void run() {
            super.run();
            while (true)
            {
                try {
                    integers.put(1);
                    System.out.println("生產(chǎn)元素int 1");
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

打印010101 順序一個沒亂

package com.system.bhouse.bhouse.Queue;

import org.junit.Test;

import java.util.concurrent.SynchronousQueue;

/**
 * Created by wz on 2018-11-11.
 */

public class SynchronousQueueTest {

    private static final int QUEUESIZE= 1;
    private SynchronousQueue<Integer> integers;
    private volatile boolean isConsumer = false;

    @Test
    public void BlockQueueTest(){
        integers = new SynchronousQueue<>();
        Consumer consumer = new Consumer();
        Producer producer = new Producer();
        consumer.start();
        producer.start();
    }

    class Consumer extends Thread{
        @Override
        public void run() {
            super.run();
            synchronized (SynchronousQueueTest.this) {
            while (true)
            {
                if (isConsumer) {
                    System.out.println("消費元素:" + 1);
                    isConsumer = !isConsumer;
                    SynchronousQueueTest.this.notify();
                }else {
                    try {
                        SynchronousQueueTest.this.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }

            }
            }
        }
    }

    class Producer extends Thread{
        @Override
        public void run() {
            super.run();
            synchronized (SynchronousQueueTest.this) {
            while (true)
            {
                if (!isConsumer) {
                    System.out.println("生產(chǎn)元素int 0");
                    isConsumer = !isConsumer;
                    SynchronousQueueTest.this.notify();
                }else {
                    try {
                        SynchronousQueueTest.this.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                }
            }
        }
    }
}

以為SynchronousQueue可以一對一通信配置昔榴,應(yīng)該是打印01010101的最佳配置辛藻,發(fā)現(xiàn)你無法控制隊列里的同步機制碘橘。代碼運行到那隊列操作就停止了。

package com.system.bhouse.bhouse.Queue;

import org.junit.Test;

import java.util.concurrent.SynchronousQueue;

/**
 * Created by wz on 2018-11-11.
 */

public class SynchronousQueueTest2 {

    private SynchronousQueue<Integer> integers;
    private volatile boolean isConsumer = false;

    @Test
    public void BlockQueueTest(){
        integers = new SynchronousQueue<>();
        Consumer consumer = new Consumer();
        Producer producer = new Producer();
        consumer.start();
        producer.start();
    }

    class Consumer extends Thread{
        @Override
        public void run() {
            super.run();
            while (true)
            {
                if (isConsumer) {
                    try {
                        Integer take = integers.take();
                        System.out.println(take);
                        isConsumer=!isConsumer;
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

    class Producer extends Thread {
        @Override
        public void run() {
            super.run();
            while (true) {
                if (!isConsumer) {
                    try {
                        isConsumer = !isConsumer;
                        integers.put(1);
                        System.out.println(0);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }
}

言歸正傳

public synchronized ExecutorService executorService() {
    if (executorService == null) {
      executorService = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60, TimeUnit.SECONDS,
          new SynchronousQueue<Runnable>(), Util.threadFactory("OkHttp Dispatcher", false));
    }
    return executorService;
  }

來測試一下這個線程池特點

public class CacheTheadPool {

    private static ThreadPoolExecutor executorService;

    @Test
    public void cacheTheadPool(){
//        for (int i=0;i<100;i++) {
//            newCachedThreadPool().execute(new AsyncCall("thread"+i));
//        }

        newCachedThreadPool().execute(new AsyncCall("thread"+1));
        newCachedThreadPool().execute(new AsyncCall("thread"+2));
        newCachedThreadPool().execute(new AsyncCall("thread"+3));

        System.out.println("先開3個吱肌,按書上講會有3個是新建線程");
        System.out.println("線程池核心:"+executorService.getCorePoolSize());
        System.out.println("線程池數(shù)目:"+executorService.getPoolSize());
        System.out.println("隊列任務(wù)數(shù)目:"+executorService.getQueue().size());

        //讓上面的用完
//        try {
//            Thread.sleep(500);
//        } catch (InterruptedException e) {
//            e.printStackTrace();
//        }

        newCachedThreadPool().execute(new AsyncCall("thread"+4));
        newCachedThreadPool().execute(new AsyncCall("thread"+5));
        newCachedThreadPool().execute(new AsyncCall("thread"+6));

        System.out.println("再開3個痘拆,按書上講會有3個是,看看是不是復(fù)用");
        System.out.println("線程池核心:"+executorService.getCorePoolSize());
        System.out.println("線程池數(shù)目:"+executorService.getPoolSize());
        System.out.println("隊列任務(wù)數(shù)目:"+executorService.getQueue().size());

        try {
            Thread.sleep(8000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        newCachedThreadPool().execute(new AsyncCallSleep("thread"+7));
        newCachedThreadPool().execute(new AsyncCallSleep("thread"+8));
        newCachedThreadPool().execute(new AsyncCallSleep("thread"+9));

        System.out.println("再開3個,按書上講會有3個是,看看是不是新建");
        System.out.println("線程池核心:"+executorService.getCorePoolSize());
        System.out.println("線程池數(shù)目:"+executorService.getPoolSize());
        System.out.println("隊列任務(wù)數(shù)目:"+executorService.getQueue().size());
    }

    /**
     * 建立的都是 用戶線程  優(yōu)先級比較高.
     * @return
     */
    public synchronized  ExecutorService newCachedThreadPool(){
        if (executorService == null) {
            executorService = new ThreadPoolExecutor(0, 6, 5, TimeUnit.SECONDS,
                    new SynchronousQueue<Runnable>(), Util.threadFactory("OkHttp Dispatcher", false));
        }
        return executorService;
    }


    final class AsyncCall extends NamedRunnable {

        private AsyncCall(Object... arg){
            super("OkHttp %s",arg);
        }

        @Override
        protected void execute() {
            String name = Thread.currentThread().getName();
            System.out.println("當前處理的線程名是:"+name);
            try {
                Thread.sleep(2000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    final class AsyncCallSleep extends NamedRunnable {

        private AsyncCallSleep(Object... arg){
            super("OkHttpSleep %s",arg);
        }

        @Override
        protected void execute() {
            String name = Thread.currentThread().getName();
            System.out.println("當前處理的隨眠線程名是:"+name);
            try {
                Thread.sleep(3000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    public abstract class NamedRunnable implements Runnable {
        protected final String name;

        public NamedRunnable(String format, Object... args) {
            this.name = String.format(format, args);
        }

        @Override public final void run() {
            String oldName = Thread.currentThread().getName();
            Thread.currentThread().setName(name);
            try {
                execute();
            } finally {
                Thread.currentThread().setName(oldName);
            }
        }

        protected abstract void execute();
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末岩榆,一起剝皮案震驚了整個濱河市错负,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌勇边,老刑警劉巖犹撒,帶你破解...
    沈念sama閱讀 211,639評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異粒褒,居然都是意外死亡识颊,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,277評論 3 385
  • 文/潘曉璐 我一進店門奕坟,熙熙樓的掌柜王于貴愁眉苦臉地迎上來祥款,“玉大人,你說我怎么就攤上這事月杉∪絮耍” “怎么了?”我有些...
    開封第一講書人閱讀 157,221評論 0 348
  • 文/不壞的土叔 我叫張陵苛萎,是天一觀的道長桨昙。 經(jīng)常有香客問我,道長腌歉,這世上最難降的妖魔是什么蛙酪? 我笑而不...
    開封第一講書人閱讀 56,474評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮翘盖,結(jié)果婚禮上桂塞,老公的妹妹穿的比我還像新娘。我一直安慰自己馍驯,他們只是感情好阁危,可當我...
    茶點故事閱讀 65,570評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著汰瘫,像睡著了一般狂打。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上吟吝,一...
    開封第一講書人閱讀 49,816評論 1 290
  • 那天,我揣著相機與錄音颈娜,去河邊找鬼剑逃。 笑死浙宜,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的蛹磺。 我是一名探鬼主播粟瞬,決...
    沈念sama閱讀 38,957評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼萤捆!你這毒婦竟也來了裙品?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,718評論 0 266
  • 序言:老撾萬榮一對情侶失蹤俗或,失蹤者是張志新(化名)和其女友劉穎市怎,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體辛慰,經(jīng)...
    沈念sama閱讀 44,176評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡区匠,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,511評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了帅腌。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驰弄。...
    茶點故事閱讀 38,646評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖速客,靈堂內(nèi)的尸體忽然破棺而出戚篙,到底是詐尸還是另有隱情,我是刑警寧澤溺职,帶...
    沈念sama閱讀 34,322評論 4 330
  • 正文 年R本政府宣布岔擂,位于F島的核電站,受9級特大地震影響辅愿,放射性物質(zhì)發(fā)生泄漏智亮。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,934評論 3 313
  • 文/蒙蒙 一点待、第九天 我趴在偏房一處隱蔽的房頂上張望阔蛉。 院中可真熱鬧,春花似錦癞埠、人聲如沸状原。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,755評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽颠区。三九已至,卻和暖如春通铲,著一層夾襖步出監(jiān)牢的瞬間毕莱,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,987評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留朋截,地道東北人蛹稍。 一個月前我還...
    沈念sama閱讀 46,358評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像部服,于是被迫代替她去往敵國和親唆姐。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,514評論 2 348

推薦閱讀更多精彩內(nèi)容