List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage
From source file net.ieldor.network.codec.worldlist.WorldListDecoder.java
/**
* An {@link ByteToMessageDecoder} that is used to decode the world list.
*
* @author Thomas Le Godais <thomaslegodais@live.com>
*
*/
From source file net.mcsproject.daemon.network.PacketDecoder.java
@AllArgsConstructor public class PacketDecoder extends ByteToMessageDecoder { private PacketRegistry packetRegistry; @Override
From source file net.mcsproject.master.network.PacketDecoder.java
class PacketDecoder extends ByteToMessageDecoder { @Override protected void decode(ChannelHandlerContext channelHandlerContext, ByteBuf byteBuf, List<Object> list) throws Exception { byte id = byteBuf.readByte();
From source file net.NettyEngine4.ServerDecoder.java
/**
* ChannelInboundHandler
* ChannelHandler?
* final DefaultChannelHandlerContext next = findContextInbound();
* EventExecutor executor = next.executor();
* ? executor??
From source file net.openhft.fix.transport.codec.NettyFrameDecoder.java
/** * @author lburgazzoli */ public class NettyFrameDecoder extends ByteToMessageDecoder { private int m_msgLength;
From source file net.sourceforge.entrainer.socket.PortUnificationHandler.java
/** * The Class PortUnificationHandler. */ public class PortUnificationHandler extends ByteToMessageDecoder { private NettyConnectionHandler nettyConnectionHandler;
From source file net.tridentsdk.server.netty.packet.PacketDecrypter.java
/** * Decrypts incoming packets and forwards the bytes to the PacketDecoder * * @author The TridentSDK Team */ public class PacketDecrypter extends ByteToMessageDecoder {
From source file netty.common.proto.code.MQTTDecoder.java
/** * * @author andrea */ public class MQTTDecoder extends ByteToMessageDecoder {
From source file netty.example.factorial.BigIntegerDecoder.java
/**
* Decodes the binary representation of a {@link BigInteger} prepended
* with a magic number ('F' or 0x46) and a 32-bit integer length prefix into a
* {@link BigInteger} instance. For example, { 'F', 0, 0, 0, 1, 42 } will be
* decoded into new BigInteger("42").
*/
From source file netty.example.portunification.PortUnificationServerHandler.java
/** * Manipulates the current pipeline dynamically to switch protocols or enable * SSL or GZIP. */ public class PortUnificationServerHandler extends ByteToMessageDecoder {