Example usage for io.netty.channel DefaultChannelConfig DefaultChannelConfig

List of usage examples for io.netty.channel DefaultChannelConfig DefaultChannelConfig

Introduction

In this page you can find the example usage for io.netty.channel DefaultChannelConfig DefaultChannelConfig.

Prototype

public DefaultChannelConfig(Channel channel) 

Source Link

Usage

From source file:eu.matejkormuth.rpgdavid.starving.npc.util.NullChannel.java

License:Open Source License

protected NullChannel(Channel parent) {
    super(parent);
    config = new DefaultChannelConfig(this);
}

From source file:io.nodyn.netty.pipe.AbstractNioStreamChannel.java

License:Apache License

protected AbstractNioStreamChannel(NodeProcess process, Pipe pipe) {
    super(null, pipe.source());
    this.process = process;
    this.config = new DefaultChannelConfig(this);
    this.metadata = new ChannelMetadata(false);
}

From source file:io.nodyn.netty.pipe.NioOutputStreamChannel.java

License:Apache License

protected NioOutputStreamChannel(NodeProcess process, OutputStream out) {
    super(null);/*from  w w  w . j a v a 2  s  .co m*/
    this.process = process;
    this.out = out;
    this.config = new DefaultChannelConfig(this);
    this.metadata = new ChannelMetadata(false);
    this.open = true;
}