溫馨提示×

溫馨提示×

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

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

Netty組件中怎么注冊Channel

發(fā)布時間:2021-08-12 11:00:16 來源:億速云 閱讀:123 作者:Leah 欄目:大數(shù)據(jù)

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

一、EventLoopGroup類圖概覽

 

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

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

從以下類圖結(jié)構(gòu)io.netty.util.concurrent.AbstractEventExecutorGroup分支主要負責(zé)多線程任務(wù)的處理;io.netty.channel.EventLoopGroup分支主要負責(zé)Channel相關(guān)的注冊。MultithreadEventExecutorGroup與MultithreadEventLoopGroup分別繼承和實現(xiàn)了上面AbstractEventExecutorGroup和EventLoopGroup,將其負責(zé)的功能進行融合。

Netty組件中怎么注冊Channel



二、構(gòu)造函數(shù)解讀

 Netty組件中怎么注冊Channel

Netty組件中怎么注冊Channel

Netty組件中怎么注冊Channel


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


三、初始化EventExecutor數(shù)組

 Netty組件中怎么注冊Channel

Netty組件中怎么注冊Channel

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


 
NioEventLoop類圖

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

Netty組件中怎么注冊Channel


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



四、EventExecutor選擇器


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

chooser = chooserFactory.newChooser(children);

EventExecutorChooser類圖結(jié)構(gòu)

Netty組件中怎么注冊Channel

選擇策略

Netty組件中怎么注冊Channel

@1  如果數(shù)組長度是2的冪次方,選擇PowerOfTwoEventExecutorChooser,在選取EventExecutor時使用executors[idx.getAndIncrement() & executors.length - 1]  
 @2   如果數(shù)組長度不是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,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降摹OM隳芡ㄟ^這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI