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.repo.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.rs3e.network.protocol.codec.js5.UpdateDecoder.java

/**
 * An {@link ByteToMessageDecoder} that handles the update decoding.
 *
 * @author Thomas Le Godais <thomaslegodais@live.com>
 *
 */

From source file com.rs3e.network.protocol.codec.login.LoginDecoder.java

/**
 * @author Belthazar - 731 Updates
 * @author Sir Tom - 530 Base
 */
public class LoginDecoder extends ByteToMessageDecoder<Object> {

From source file com.rs3e.network.protocol.js5.UpdateDecoder.java

/**
 * An {@link ByteToMessageDecoder} that handles the update decoding.
 *
 * @author Thomas Le Godais <thomaslegodais@live.com>
 *
 */

From source file com.rs3e.network.protocol.login.LoginDecoder.java

/**
 * @author Belthazar - 731 Updates
 * @author Sir Tom - 530 Base
 */
public class LoginDecoder extends ByteToMessageDecoder<Object> {

From source file com.rs3e.network.protocol.worldlist.WorldListDecoder.java

/**
 * An {@link ByteToMessageDecoder} that is used to decode the world list.
 *
 * @author Thomas Le Godais <thomaslegodais@live.com>
 *
 */

From source file com.sample.netty.socket.utils.MessageDecoder.java

/**
 *
 * @author Vitor
 */
public class MessageDecoder extends ByteToMessageDecoder {

From source file com.seagate.kinetic.common.protocol.codec.KineticDecoder.java

/**
 *
 * Kinetic protocol buffer message decoder (version2 protocol).
 * <p>
 * The client library, simulator, or a Kinetic drive uses the following protocol
 * to decode a message.

From source file com.seventh_root.ld33.client.network.LD33ClientBoundPacketDecoder.java

public class LD33ClientBoundPacketDecoder extends ByteToMessageDecoder {

    private LD33Client client;

    public LD33ClientBoundPacketDecoder(LD33Client client) {
        this.client = client;

From source file com.seventh_root.ld33.server.network.LD33ServerBoundPacketDecoder.java

public class LD33ServerBoundPacketDecoder extends ByteToMessageDecoder {

    private LD33Server server;

    public LD33ServerBoundPacketDecoder(LD33Server server) {
        this.server = server;