Example usage for io.netty.handler.codec ByteToMessageDecoder subclass-usage

List of usage examples for io.netty.handler.codec ByteToMessageDecoder subclass-usage

Introduction

In this page you can find the example usage for io.netty.handler.codec ByteToMessageDecoder subclass-usage.

Usage

From source file org.spongepowered.clean.network.netty.PacketSplitter.java

public class PacketSplitter extends ByteToMessageDecoder {

    public PacketSplitter() {

    }

From source file org.spout.api.protocol.PreprocessReplayingDecoder.java

/**
 * This class is both a {@link ByteToMessageDecoder} but also allows processing pre-decode via {@code decodeProcessed}.
 *
 */
public abstract class PreprocessReplayingDecoder extends ByteToMessageDecoder implements ProcessorHandler {
    private final AtomicReference<ChannelProcessor> processor = new AtomicReference<>(null);

From source file org.teiid.transport.PgFrontendProtocol.java

/**
 * Represents the messages going from PG ODBC Client --> back end Server
 * Some parts of this code is taken from H2's implementation of ODBC
 */
@SuppressWarnings("nls")
public class PgFrontendProtocol extends ByteToMessageDecoder {

From source file org.telegram.server.MTProtoDecoder.java

/**
 * Created by aykut on 25/09/15.
 */
public class MTProtoDecoder extends ByteToMessageDecoder {
    int currentPacketLength;
    byte fByte;

From source file org.traccar.BaseFrameDecoder.java

public abstract class BaseFrameDecoder extends ByteToMessageDecoder {

    @Override
    protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
        Object decoded = decode(ctx, ctx != null ? ctx.channel() : null, in);
        if (decoded != null) {

From source file org.virtue.network.protocol.creation.CreationDecoder.java

/**
 * @author Im Frizzy <skype:kfriz1998>
 * @since Oct 1, 2014
 */
public class CreationDecoder extends ByteToMessageDecoder {

From source file org.virtue.network.protocol.event.GameEventDecoder.java

/**
 * @author Kyle Friz
 * @since Sep 5, 2014
 */
public class GameEventDecoder extends ByteToMessageDecoder {

From source file org.virtue.network.protocol.handshake.HandshakeDecoder.java

/**
 * @author Im Frizzy <skype:kfriz1998>
 * @since Aug 8, 2014
 */
public class HandshakeDecoder extends ByteToMessageDecoder {

From source file org.virtue.network.protocol.login.LoginDecoder.java

/**
 * @author Im Frizzy <skype:kfriz1998>
 * @since Aug 8, 2014
 */
public class LoginDecoder extends ByteToMessageDecoder {

From source file org.virtue.network.protocol.ondemand.OnDemandDecoder.java

/**
 * @author Im Frizzy <skype:kfriz1998>
 * @since Aug 8, 2014
 */
public class OnDemandDecoder extends ByteToMessageDecoder {