Example usage for io.netty.channel ChannelHandlerContext interface-usage

List of usage examples for io.netty.channel ChannelHandlerContext interface-usage

Introduction

In this page you can find the example usage for io.netty.channel ChannelHandlerContext interface-usage.

Usage

From source file org.onosproject.lisp.ctl.ChannelHandlerContextAdapter.java

/**
 * Adapter for testing against a netty channel handler context.
 */
public class ChannelHandlerContextAdapter implements ChannelHandlerContext {

    @Override

From source file org.onosproject.lisp.ctl.impl.ChannelHandlerContextAdapter.java

/**
 * Adapter for testing against a netty channel handler context.
 */
public class ChannelHandlerContextAdapter implements ChannelHandlerContext {

    @Override

From source file org.onosproject.openflow.ChannelHandlerContextAdapter.java

/**
 * Adapter for testing against a netty channel handler context.
 */
public class ChannelHandlerContextAdapter implements ChannelHandlerContext {

    @Override

From source file org.onosproject.xmpp.core.ctl.ChannelHandlerContextAdapter.java

/**
 * Adapter for testing against a netty channel handler context.
 */
public class ChannelHandlerContextAdapter implements ChannelHandlerContext {
    @Override
    public Channel channel() {

From source file org.spout.api.protocol.fake.FakeChannelHandlerContext.java

public abstract class FakeChannelHandlerContext implements ChannelHandlerContext {
    private List<byte[]> list;
    boolean first;

    public void setList(List<byte[]> list) {
        this.list = list;

From source file org.springframework.boot.context.embedded.netty.StubChannelHandlerContext.java

/**
 * A stub {@link ChannelHandlerContext} for benchmarks, as dynamic mocks introduce far too many side effects.
 */
public class StubChannelHandlerContext implements ChannelHandlerContext {
    private final Channel channel = new EmbeddedChannel();

From source file org.traccar.WrapperContext.java

public class WrapperContext implements ChannelHandlerContext {

    private ChannelHandlerContext context;
    private SocketAddress remoteAddress;

    public WrapperContext(ChannelHandlerContext context, SocketAddress remoteAddress) {