List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage
From source file org.asterisque.netty.MessageDecoder.java
/** * Netty ??? * * @author Takami Torao */ class MessageDecoder extends ByteToMessageDecoder {
From source file org.cane.rpc.coder.NettyRpcDecoder.java
/** * * @author zhoukang * */ public class NettyRpcDecoder extends ByteToMessageDecoder {
From source file org.code_house.ebus.netty.codec.AckTelegramDecoder.java
public class AckTelegramDecoder extends ByteToMessageDecoder { @Override protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception { byte aByte = in.readByte(); if (in.readableBytes() > 1) {
From source file org.code_house.ebus.netty.codec.EBusTelegramDecoder.java
/** * Common stuff for working with eBUS telegrams and their fragments. * * @author ?ukasz Dywicki <luke@code-house.org> */ public abstract class EBusTelegramDecoder extends ByteToMessageDecoder {
From source file org.dcache.xrootd.core.AbstractXrootdDecoder.java
/**
* Base class for frame decoders.
*
* TODO: Implement zero-copy handling of write requests by splitting
* the request into fragments.
*/
From source file org.dcache.xrootd.core.XrootdHandshakeHandler.java
/** * A ChannelHandler which recognizes the xrootd handshake and generates an * appropriate response. Once handshaked, the handler removes itself from * the pipeline. Failure to handshake causes the channel to be closed. */ public class XrootdHandshakeHandler extends ByteToMessageDecoder {
From source file org.dcache.xrootd.tpc.core.XrootdClientDecoder.java
/**
* <p>FrameDecoder for translating xrootd frames into
* {@link XrootdInboundResponse} objects.</p>.
*
* <p>Intended to support third-party client requests to a source server.</p>
*/
From source file org.deltaproject.manager.utils.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 org.dna.mqtt.moquette.parser.netty.MQTTDecoder.java
/** * @author andrea */ public class MQTTDecoder extends ByteToMessageDecoder { //3 = 3.1, 4 = 3.1.1
From source file org.eclipse.californium.elements.tcp.DatagramFramer.java
/** * Converts stream of bytes over TCP connection into distinct datagrams based on * CoAP over TCP spec. */ public class DatagramFramer extends ByteToMessageDecoder {