List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage
From source file log.server.handler.EightLengthFieldDecoder.java
/**
* A decoder that splits the received {@link ByteBuf}s dynamically by the
* value of the length field in the message. It is particularly useful when you
* decode a binary message which has an integer header field that represents the
* length of the message body or the whole message.
* <p>
From source file me.calvinliu.netty.factorial.BigIntegerDecoder.java
/**
* Decodes the binary representation of a {@link java.math.BigInteger} prepended
* with a magic number ('F' or 0x46) and a 32-bit integer length prefix into a
* {@link java.math.BigInteger} instance. For example, { 'F', 0, 0, 0, 1, 42 } will be
* decoded into new BigInteger("42").
*/
From source file me.calvinliu.netty.portunification.PortUnificationServerHandler.java
/** * Manipulates the current pipeline dynamically to switch protocols or enable * SSL or GZIP. */ public class PortUnificationServerHandler extends ByteToMessageDecoder {
From source file me.ferrybig.p2pnetwork.codec.PacketDecoder.java
/** * * @author Fernando */ public class PacketDecoder extends ByteToMessageDecoder {
From source file net.epsilony.utils.codec.modbus.handler.ModbusMasterResponseDecoder.java
/** * @author <a href="mailto:epsilony@epsilony.net">Man YUAN</a> * */ public class ModbusMasterResponseDecoder extends ByteToMessageDecoder {
From source file net.epsilony.utils.codec.modbus.handler.ModbusSlaveRequestDecoder.java
/** * @author <a href="mailto:epsilony@epsilony.net">Man YUAN</a> * */ public class ModbusSlaveRequestDecoder extends ByteToMessageDecoder { private boolean withCheckSum = false;
From source file net.floodlightcontroller.core.internal.OFMessageDecoder.java
/** * Decode an openflow message from a channel, for use in a netty pipeline. * * @author Andreas Wundsam <andreas.wundsam@bigswitch.com> */ public class OFMessageDecoder extends ByteToMessageDecoder {
From source file net.ieldor.network.codec.buf.PacketBufDecoder.java
/**
* An {@link ByteToMessageDecoder} that is used to decode incoming packets from the
* client.
*
* @author Thomas Le Godais <thomaslegodais@live.com>
*
From source file net.ieldor.network.codec.login.LoginDecoder.java
/**
* An {@link ByteToMessageDecoder} that handles the login procedure.
*
* @author Thomas Le Godais <thomaslegodais@live.com>
*
*/
From source file net.ieldor.network.codec.update.UpdateDecoder.java
/**
* An {@link ByteToMessageDecoder} that handles the update decoding.
*
* @author Thomas Le Godais <thomaslegodais@live.com>
*
*/