您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關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,將其負責的功能進行融合。
二、構造函數解讀
構造函數
nThreads:eventLoopThreads線程數量,默認值0時取CPU核數的2倍,可以通過參數io.netty.eventLoopThreads指定
Executor:默認ThreadPerTaskExecutor
SelectorProvider默認SelectorProvider.provider(),用于開啟Selector和Channel
SelectStrategyFactory:SelectStrategy工廠類,默認DefaultSelectStrategyFactory
EventExecutorChooserFactory:EventExecutor選擇器,默認為DefaultEventExecutorChooserFactory
三、初始化EventExecutor數組
代碼解讀
EventExecutor[] children:數組大小為nThreads,默認為CPU核數乘以2。
EventExecutor繼承了EventExecutorGroup本質上為線程框架類Executor
children[i]:數據元素為EventLoop,本示例中為NioEventLoop。
NioEventLoop繼承了SingleThreadEventLoop,SingleThreadEventLoop同時繼承和實現了EventExecutor和EventLoop。即:NioEventLoop擁有了線程類框架處理多線程任務的能力和處理Channel能力。
備注:本文中EventExecutor數組children的元素為NioEventLoop,NioEventLoop同時擁有線程框架能力和Channel注冊等處理能力。
四、EventExecutor選擇器
第三部分對EventExecutor[] children進行初始化分析,然在使用時如何選擇其中一個元素呢?
在初始化過程中有以下一行代碼,用于初始化EventExecutorChooser。
chooser = chooserFactory.newChooser(children);
五、Channel注冊
Channel注冊入口
選擇EventLoop
本文為NioEventLoop
綁定Channel到EventExecutor
通過DefaultChannelPromise綁定Channel到EventExecutor(NioEventLoop)
將Channel注冊到Selector
以上就是Netty組件中怎么注冊Channel,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。