Example usage for io.netty.channel.embedded EmbeddedChannel subclass-usage

List of usage examples for io.netty.channel.embedded EmbeddedChannel subclass-usage

Introduction

In this page you can find the example usage for io.netty.channel.embedded EmbeddedChannel subclass-usage.

Usage

From source file alluxio.EmbeddedNoExceptionChannel.java

/**
 * A special version of {@link EmbeddedChannel} that doesn't fail on exception so that we can
 * still check result after the channel is closed.
 */
public final class EmbeddedNoExceptionChannel extends EmbeddedChannel {
    /**

From source file io.nodyn.netty.pipe.ipc.DuplexIPCChannel.java

/**
 * @author Bob McWhirter
 */
public class DuplexIPCChannel extends EmbeddedChannel {

    private final Object outboundNotifier = new Object();

From source file org.apache.dubbo.rpc.protocol.dubbo.decode.LocalEmbeddedChannel.java

public class LocalEmbeddedChannel extends EmbeddedChannel {
    public SocketAddress localAddress() {
        return new InetSocketAddress(20883);
    }

    @Override