本文介绍了网状UDP处理程序 - 异步?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的工作具有多个处理程序UDP服务器上。
Am working on UDP server which have multiple handlers.
看我的code我怎么引导的通道。
Look at my code how I bootstrap the channel.
return new Bootstrap().
group(rtpNioEventLoopGroup()).
channel(NioDatagramChannel.class).
handler(saveToRepoHandler()).
handler(informPartyHandler());
现在我保存回购,并告知方需要异步执行。他们没有依赖关系彼此。
Now my save-repo and inform-party need to be executed asynchronously. They have no dependency to each other.
请问网状执行它们异步?
Does netty execute them asynchronously ?
推荐答案
调用处理器(...)多次将只需更换previous一套处理程序。你想用一个ChannelInitializer并添加ChannelHandlers那里。查看我们的例子或详细信息的javadoc。
Calling handler(...) multiple times will just replace the previous set handler. You want to use a ChannelInitializer and add the ChannelHandlers there. Check our examples or the javadocs for details.
这篇关于网状UDP处理程序 - 异步?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!