List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage
From source file com.friz.owari.network.codec.HandshakeDecoder.java
/** * @author Kyle Fricilone * @date Jun 12, 2016 */ public class HandshakeDecoder extends ByteToMessageDecoder {
From source file com.friz.owari.network.codec.PatchDecoder.java
/** * @author Kyle Fricilone * @date Jun 14, 2016 */ public class PatchDecoder extends ByteToMessageDecoder {
From source file com.friz.owari.network.codec.PatchInitDecoder.java
/** * @author Kyle Fricilone * @date Jun 14, 2016 */ public class PatchInitDecoder extends ByteToMessageDecoder {
From source file com.friz.update.network.codec.UpdateDecoder.java
/** * Created by Kyle Fricilone on 9/20/2015. */ public final class UpdateDecoder extends ByteToMessageDecoder { @Override
From source file com.friz.update.network.codec.UpdateInitDecoder.java
/** * Created by Kyle Fricilone on 9/24/2015. */ public class UpdateInitDecoder extends ByteToMessageDecoder { @Override
From source file com.gemstone.gemfire.internal.redis.ByteToCommandDecoder.java
/**
* This is the first part of the channel pipeline for Netty. Here incoming
* bytes are read and a created {@link Command} is sent down the pipeline.
* It is unfortunate that this class is not {@link Sharable} because no state
* is kept in this class. State is kept by {@link ByteToMessageDecoder}, it may
* be worthwhile to look at a different decoder setup as to avoid allocating a decoder
From source file com.github.lburgazzoli.quickfixj.transport.netty.codec.NettyMessageDecoder.java
/** * */ public class NettyMessageDecoder extends ByteToMessageDecoder { private int m_msgLength;
From source file com.github.lburgazzoli.quickfixj.transport.netty.codec.NettyRegExMessageDecoder.java
/** * */ public final class NettyRegExMessageDecoder extends ByteToMessageDecoder { /**
From source file com.github.pgasync.impl.netty.ByteBufMessageDecoder.java
/** * Decodes incoming bytes to PostgreSQL V3 protocol message instances. * * @author Antti Laisi */ class ByteBufMessageDecoder extends ByteToMessageDecoder {
From source file com.github.spapageo.jannel.channel.MessageDecoder.java
/** * This decoder will be run after the LengthFieldDecoder that read a whole message and its job is * to covert a ByteBuf to a {@link Message} */ public class MessageDecoder extends ByteToMessageDecoder {