List of usage examples for io.netty.handler.codec.sctp SctpMessageCompletionHandler SctpMessageCompletionHandler
SctpMessageCompletionHandler
From source file:org.mobicents.protocols.sctp.netty.NettySctpClientChannelInitializer.java
License:Open Source License
@Override protected void initChannel(SctpChannel ch) throws Exception { ch.pipeline().addLast(new SctpMessageCompletionHandler(), new NettySctpClientHandler(this.nettyAssociationImpl)); }
From source file:org.mobicents.protocols.sctp.netty.NettySctpServerChannelInitializer.java
License:Open Source License
@Override protected void initChannel(SctpChannel ch) throws Exception { ch.pipeline().addLast(new SctpMessageCompletionHandler(), new NettySctpServerHandler(this.nettyServerImpl, this.sctpManagementImpl)); }