Example usage for io.netty.handler.codec LengthFieldBasedFrameDecoder subclass-usage

List of usage examples for io.netty.handler.codec LengthFieldBasedFrameDecoder subclass-usage

Introduction

In this page you can find the example usage for io.netty.handler.codec LengthFieldBasedFrameDecoder subclass-usage.

Usage

From source file faststore.net.netty.common.faststoreprotocol.netty.FastStoreNettyDecoder.java

/**
 * @author shijia.wxr<vintage.wang@gmail.com>
 * @since 2013-7-13
 */
public class FastStoreNettyDecoder extends LengthFieldBasedFrameDecoder {
    private static final Logger log = LoggerFactory.getLogger(FastStoreNettyDecoder.class);

From source file favoorr.netty.protocol.netty.codec.NettyMessageDecoder.java

/**
 * @author Lilinfeng
 * @version 1.0
 * @date 2014315
 */
public class NettyMessageDecoder extends LengthFieldBasedFrameDecoder {

From source file fourteen.proprietaryprotocol.codec.NettyMessageDecoder.java

/**
 * @author Lilinfeng
 * @version 1.0
 * @date 2014315
 */
public class NettyMessageDecoder extends LengthFieldBasedFrameDecoder {

From source file fr.letroll.ttorrentandroid.client.io.PeerFrameDecoder.java

/**
 *
 * @author shevek
 */
public class PeerFrameDecoder extends LengthFieldBasedFrameDecoder {

From source file hivemall.mix.MixMessageDecoder.java

public final class MixMessageDecoder extends LengthFieldBasedFrameDecoder {

    public MixMessageDecoder() {
        super(1048576/* 1MiB */, 0, 4, 0, 4);
    }

From source file io.reactivesocket.transport.tcp.ReactiveSocketLengthCodec.java

public class ReactiveSocketLengthCodec extends LengthFieldBasedFrameDecoder {

    public ReactiveSocketLengthCodec() {
        super(Integer.MAX_VALUE, 0, BitUtil.SIZE_OF_INT, -1 * BitUtil.SIZE_OF_INT, 0);
    }
}

From source file net.hasor.rsf.protocol.rsf.RsfDecoder.java

/**
 * RSF ?
 * @version : 20141010
 * @author (zyc@hasor.net)
 */
public class RsfDecoder extends LengthFieldBasedFrameDecoder {

From source file net.hasor.rsf.remoting.transport.netty.RSFProtocolDecoder.java

/**
 * ?
 * @version : 20141010
 * @author (zyc@hasor.net)
 */
public class RSFProtocolDecoder extends LengthFieldBasedFrameDecoder {

From source file netty.codec.NettyMessageDecoder.java

/**
 * @author Lilinfeng
 * @date 2014315
 * @version 1.0
 */
public class NettyMessageDecoder extends LengthFieldBasedFrameDecoder {

From source file netty.protocol.netty.codec.NettyMessageDecoder.java

/**
 * @author dreamyao
 * @version 1.0
 * @date 2014315
 */
public class NettyMessageDecoder extends LengthFieldBasedFrameDecoder {