<div><div>What would be a proper way to send a (downstream) message through Netty without a reference to a handler, to make sure it will get through all the handlers? Would that be it:</div><div><br></div><div>    val channel = bootstrap.getPipelineFactory.getPipeline.getChannel</div>
<div><br></div><div>    val messageEvent = new DownstreamMessageEvent( </div><div>                                        channel,</div><div>                                        new DefaultChannelFuture( channel, true ),</div>
<div>                                        message,</div><div>                                        bootstrap.getOption( &quot;remoteAddress&quot; ).asInstanceOf[InetSocketAddress] )</div></div><div><br></div>    bootstrap.getPipelineFactory.getPipeline.sendDownstream( messageEvent )<div>
<br></div><div>Thank you!<br><div><br></div><div><br></div></div>