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 com.flowpowered.network.pipeline.MessageProcessorDecoder.java

public class MessageProcessorDecoder extends ByteToMessageDecoder {
    private final MessageHandler messageHandler;

    public MessageProcessorDecoder(final MessageHandler messageHandler) {
        this.messageHandler = messageHandler;
    }

From source file com.flowpowered.networking.pipeline.MessageProcessorDecoder.java

public class MessageProcessorDecoder extends ByteToMessageDecoder {
    private final MessageHandler messageHandler;

    public MessageProcessorDecoder(final MessageHandler messageHandler) {
        this.messageHandler = messageHandler;
    }

From source file com.flysoloing.learning.network.netty.factorial.BigIntegerDecoder.java

/**
 * Decodes the binary representation of a {@link BigInteger} prepended
 * with a magic number ('F' or 0x46) and a 32-bit integer length prefix into a
 * {@link BigInteger} instance.  For example, { 'F', 0, 0, 0, 1, 42 } will be
 * decoded into new BigInteger("42").
 */

From source file com.flysoloing.learning.network.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 com.friz.game.network.codec.LoginDecoder.java

/**
 * Created by Kyle Fricilone on 9/23/2015.
 */
public class LoginDecoder extends ByteToMessageDecoder {

    @Override

From source file com.friz.game.network.codec.LoginInitDecoder.java

/**
 * Created by Kyle Fricilone on 9/22/2015.
 */
public class LoginInitDecoder extends ByteToMessageDecoder {

    @Override

From source file com.friz.lobby.network.codec.LobbyInitDecoder.java

/**
 * Created by Kyle Fricilone on 9/22/2015.
 */
public class LobbyInitDecoder extends ByteToMessageDecoder {

    @Override

From source file com.friz.lobby.network.codec.LoginDecoder.java

/**
 * Created by Kyle Fricilone on 9/22/2015.
 */
public class LoginDecoder extends ByteToMessageDecoder {

    @Override

From source file com.friz.lobby.network.codec.SocialDecoder.java

/**
 * Created by Kyle Fricilone on 9/22/2015.
 */
public class SocialDecoder extends ByteToMessageDecoder {

    private final int[] key;

From source file com.friz.owari.network.codec.ExchangeDecoder.java

/**
 * @author Kyle Fricilone
 * @date Jun 12, 2016
 */
public class ExchangeDecoder extends ByteToMessageDecoder {