List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage
From source file com.twitter.http2.HttpConnectionHandler.java
/** * Manages streams within an HTTP/2 connection. */ public class HttpConnectionHandler extends ByteToMessageDecoder implements HttpFrameDecoderDelegate, ChannelOutboundHandler {
From source file com.vethrfolnir.game.network.mu.MuCyperDecoder.java
/** * @author Vlad * */ public final class MuCyperDecoder extends ByteToMessageDecoder {
From source file com.weibo.api.motan.transport.netty.NettyDecoder.java
/**
* netty client decode
*
* @author maijunsheng
* @version 2013-5-31
*
From source file com.whizzosoftware.foscam.camera.protocol.OrderDecoder.java
/**
* An inbound handler responsible for reading a DatagramPacket and converting it into a Foscam Order
* object.
*
* @author Dan Noguerol
*/
From source file com.whizzosoftware.hobson.davisvantage.api.codec.VantageSerialFrameDecoder.java
/** * A Netty decoder for Davis Vantage serial command frames. * * @author Dan Noguerol */ public class VantageSerialFrameDecoder extends ByteToMessageDecoder {
From source file com.whizzosoftware.hobson.mysensors.protocol.MySensorsDecoder.java
public class MySensorsDecoder extends ByteToMessageDecoder { private static final Logger logger = LoggerFactory.getLogger(MySensorsDecoder.class); @Override protected void decode(ChannelHandlerContext channelHandlerContext, ByteBuf buf, List<Object> out) throws Exception {
From source file com.whizzosoftware.wzwave.codec.ZWaveFrameDecoder.java
/** * Class responsible for receiving a stream of bytes and converting them into one or more Z-Wave frames. * * @author Dan Noguerol */ public class ZWaveFrameDecoder extends ByteToMessageDecoder {
From source file com.wq.wqchat.netty.codec.PacketDecoder.java
/**
* Created by ohun on 2015/12/19.
* length(4)+cmd(1)+cc(2)+flags(1)+sessionId(4)+lrc(1)+body(n)
*
* @author qiong.wang
*/
From source file com.xiovr.unibot.bot.network.impl.ConnectionDecoderImpl.java
public class ConnectionDecoderImpl extends ByteToMessageDecoder implements ConnectionDecoder { public ConnectionDecoderImpl() { super();
From source file com.xyz.rpc.netty4.protocol.Netty4ProtocolDecoder.java
/**
* decode byte[] change to pipeline receive requests or responses,let's IO
* thread do less thing
*
* @author <a href="mailto:coderplay@gmail.com">Min Zhou</a>
*/