List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage
From source file org.jfxvnc.net.rfb.codec.decoder.ProtocolVersionDecoder.java
public class ProtocolVersionDecoder extends ByteToMessageDecoder { protected final Charset ASCII = StandardCharsets.US_ASCII; private final int length = 12;
From source file org.jfxvnc.net.rfb.codec.security.vncauth.VncAuthDecoder.java
public class VncAuthDecoder extends ByteToMessageDecoder implements RfbSecurityDecoder { @Override protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception { if (!in.isReadable(16)) { return;
From source file org.jmqtt.core.codec.MQTTDecoder.java
/** * @author andrea */ public class MQTTDecoder extends ByteToMessageDecoder { //3 = 3.1, 4 = 3.1.1
From source file org.kordamp.javatrove.chat04.impl.CommandDecoderImpl.java
/** * @author Andres Almiray */ public class CommandDecoderImpl extends ByteToMessageDecoder implements CommandDecoder { @Inject private ObjectMapper objectMapper;
From source file org.l2junity.network.codecs.PacketDecoder.java
/** * @author Nos * @param <T> */ public class PacketDecoder<T> extends ByteToMessageDecoder { private static final Logger LOGGER = LoggerFactory.getLogger(PacketDecoder.class);
From source file org.legacy.network.protocol.handshake.HandshakeDecoder.java
/** * @author Im Frizzy <skype:kfriz1998> * @since Jul 14, 2014 */ public class HandshakeDecoder extends ByteToMessageDecoder {
From source file org.legacy.network.protocol.ondemand.OnDemandDecoder.java
/** * @author Im Frizzy <skype:kfriz1998> * @since Jul 14, 2014 */ public class OnDemandDecoder extends ByteToMessageDecoder {
From source file org.lightmare.remote.rcp.decoders.RcpDecoder.java
/**
* Decoder (extends {@link ByteToMessageDecoder}) class @see <a
* href="http://static.netty.io/3.6/guide/">io.netty</a> for response on <a
* href="io.netty"/>netty></a> RCP returns {@link RcpWrapper}
*
* @author Levan Tsinadze
From source file org.lightmare.remote.rpc.decoders.RpcDecoder.java
/**
* Decoder class for Netty remote procedure call
*
* @author Levan Tsinadze
* @since 0.0.21-SNAPSHOT
*/
From source file org.msgpack.rpc.loop.netty.MessagePackDecoder.java
public class MessagePackDecoder extends ByteToMessageDecoder { MessagePack messagePack; public MessagePackDecoder(MessagePack messagePack) { super();