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.newlandframework.rpc.serialize.MessageDecoder.java

/**
 * @author tangjie<https://github.com/tang-jie>
 * @filename:MessageDecoder.java
 * @description:MessageDecoder?
 * @blogs http://www.cnblogs.com/jietang/
 * @since 2016/10/7

From source file com.ns.netty.gcd.server.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.openddal.server.mysql.MySQLProtocolDecoder.java

/**
 * @author <a href="mailto:jorgie.mail@gmail.com">jorgie li</a>
 *
 */
public class MySQLProtocolDecoder extends ByteToMessageDecoder {

From source file com.openddal.server.mysql.MySQLServerDecoder.java

/**
 * @author jorgie.li
 *
 */
public class MySQLServerDecoder extends ByteToMessageDecoder {

From source file com.quavo.osrs.network.protocol.codec.connection.ConnectionDecoder.java

/**
 * @author _jordan <citellumrsps@gmail.com>
 */
public final class ConnectionDecoder extends ByteToMessageDecoder {

    @Override

From source file com.quavo.osrs.network.protocol.codec.game.GamePacketDecoder.java

/**
 * @author _jordan <citellumrsps@gmail.com>
 */
public final class GamePacketDecoder extends ByteToMessageDecoder {

    /**

From source file com.quavo.osrs.network.protocol.codec.handshake.HandshakeDecoder.java

/**
 * @author _jordan <citellumrsps@gmail.com>
 */
public final class HandshakeDecoder extends ByteToMessageDecoder {

    @Override

From source file com.quavo.osrs.network.protocol.codec.login.LoginDecoder.java

/**
 * @author _jordan <citellumrsps@gmail.com>
 */
public final class LoginDecoder extends ByteToMessageDecoder {

    @Override

From source file com.quavo.osrs.network.protocol.codec.login.world.WorldLoginDecoder.java

/**
 * @author _jordan <citellumrsps@gmail.com>
 */
public final class WorldLoginDecoder extends ByteToMessageDecoder {

    /**

From source file com.quavo.osrs.network.protocol.codec.update.UpdateDecoder.java

/**
 * @author _jordan <citellumrsps@gmail.com>
 */
public final class UpdateDecoder extends ByteToMessageDecoder {

    @Override