List of usage examples for io.netty.bootstrap ChannelFactory interface-usage
From source file io.advantageous.conekt.http.impl.VertxNioServerChannelFactory.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ public class VertxNioServerChannelFactory implements ChannelFactory<VertxNioServerSocketChannel> { @Override
From source file io.advantageous.conekt.http.impl.VertxNioSocketChannelFactory.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ public class VertxNioSocketChannelFactory implements ChannelFactory<VertxNioSocketChannel> { @Override
From source file io.vertx.core.http.impl.VertxNioServerChannelFactory.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ public class VertxNioServerChannelFactory implements ChannelFactory<VertxNioServerSocketChannel> { @Override
From source file io.vertx.core.http.impl.VertxNioSocketChannelFactory.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ public class VertxNioSocketChannelFactory implements ChannelFactory<VertxNioSocketChannel> { @Override
From source file org.asynchttpclient.netty.channel.EpollSocketChannelFactory.java
class EpollSocketChannelFactory implements ChannelFactory<EpollSocketChannel> { @Override public EpollSocketChannel newChannel() { return new EpollSocketChannel(); }
From source file org.fiware.kiara.netty.NioDatagramChannelFactory.java
/** * * @author Dmitri Rubinstein {@literal <dmitri.rubinstein@dfki.de>} */ public class NioDatagramChannelFactory implements ChannelFactory<NioDatagramChannel> {
From source file org.opendaylight.tcpmd5.netty.MD5ChannelFactory.java
public interface MD5ChannelFactory<C extends Channel> extends ChannelFactory<C> {
}
From source file org.opendaylight.tcpmd5.netty.MD5ServerChannelFactory.java
public interface MD5ServerChannelFactory<C extends ServerChannel> extends ChannelFactory<C> {
}