1
netty4のChannelHandlerContext.executor()
とChannel.eventLoop()
の違いは何ですか?netty4のChannelHandlerContext.executor()とChannel.eventLoop()の違いは何ですか?
私はどちらのハンドラでタスクを実行したいのですか?
ctx.executor().submit(task);
ctx.channel().eventLoop().submit(task);
お返事ありがとうございます。ビジネスコードをタスクで実行するのか、単にchannelRead0メソッドで書き込むのかについての私の別の質問を解決できますか?(http://stackoverflow.com/questions/42617593/where-should-i-put-business-logic-in- netty4-in-chanelread0-or-run-a-task) – user6812496
これを受け入れた後でのみ:) –