91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Netty組件中怎么注冊Channel

發布時間:2021-08-12 11:00:16 來源:億速云 閱讀:124 作者:Leah 欄目:大數據

本篇文章給大家分享的是有關Netty組件中怎么注冊Channel,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

一、EventLoopGroup類圖概覽

 

在客戶端示例代碼中的中實例化了NioEventLoopGroup,接下來分析下該實例化過程。 

EventLoopGroup workerGroup = new NioEventLoopGroup();
Bootstrap b = new Bootstrap();
b.group(workerGroup); 
 

從以下類圖結構io.netty.util.concurrent.AbstractEventExecutorGroup分支主要負責多線程任務的處理;io.netty.channel.EventLoopGroup分支主要負責Channel相關的注冊。MultithreadEventExecutorGroup與MultithreadEventLoopGroup分別繼承和實現了上面AbstractEventExecutorGroup和EventLoopGroup,將其負責的功能進行融合。

Netty組件中怎么注冊Channel



二、構造函數解讀

 Netty組件中怎么注冊Channel

Netty組件中怎么注冊Channel

Netty組件中怎么注冊Channel


構造函數
nThreads:eventLoopThreads線程數量,默認值0時取CPU核數的2倍,可以通過參數io.netty.eventLoopThreads指定
Executor:默認ThreadPerTaskExecutor
SelectorProvider默認SelectorProvider.provider(),用于開啟Selector和Channel
SelectStrategyFactory:SelectStrategy工廠類,默認DefaultSelectStrategyFactory
EventExecutorChooserFactory:EventExecutor選擇器,默認為DefaultEventExecutorChooserFactory


三、初始化EventExecutor數組

 Netty組件中怎么注冊Channel

Netty組件中怎么注冊Channel

代碼解讀
EventExecutor[] children:數組大小為nThreads,默認為CPU核數乘以2。
EventExecutor繼承了EventExecutorGroup本質上為線程框架類Executor
children[i]:數據元素為EventLoop,本示例中為NioEventLoop。


 
NioEventLoop類圖

NioEventLoop繼承了SingleThreadEventLoop,SingleThreadEventLoop同時繼承和實現了EventExecutor和EventLoop。即:NioEventLoop擁有了線程類框架處理多線程任務的能力和處理Channel能力。

Netty組件中怎么注冊Channel


備注:本文中EventExecutor數組children的元素為NioEventLoop,NioEventLoop同時擁有線程框架能力和Channel注冊等處理能力。



四、EventExecutor選擇器


第三部分對EventExecutor[] children進行初始化分析,然在使用時如何選擇其中一個元素呢?
在初始化過程中有以下一行代碼,用于初始化EventExecutorChooser。

chooser = chooserFactory.newChooser(children);

EventExecutorChooser類圖結構

Netty組件中怎么注冊Channel

選擇策略

Netty組件中怎么注冊Channel

@1  如果數組長度是2的冪次方,選擇PowerOfTwoEventExecutorChooser,在選取EventExecutor時使用executors[idx.getAndIncrement() & executors.length - 1]  
 @2   如果數組長度不是2的冪次方,選擇GenericEventExecutorChooser,executors[Math.abs(idx.getAndIncrement() % executors.length)]。

五、Channel注冊

Channel注冊入口

Netty組件中怎么注冊Channel

選擇EventLoop
本文為NioEventLoop

Netty組件中怎么注冊Channel

綁定Channel到EventExecutor
通過DefaultChannelPromise綁定Channel到EventExecutor(NioEventLoop)

Netty組件中怎么注冊Channel

將Channel注冊到Selector

Netty組件中怎么注冊Channel

以上就是Netty組件中怎么注冊Channel,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

剑阁县| 运城市| 宜川县| 廊坊市| 昌乐县| 伊通| 旬阳县| 韩城市| 巩留县| 济源市| 扬州市| 襄汾县| 阜城县| 江北区| 奉化市| 黔西县| 涿鹿县| 开远市| 亳州市| 诸城市| 盐源县| 增城市| 秀山| 崇礼县| 长治市| 响水县| 樟树市| 长泰县| 绥滨县| 宁武县| 克山县| 日喀则市| 米林县| 宜城市| 莒南县| 徐水县| 迭部县| 长沙市| 怀仁县| 浦北县| 沈阳市|