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

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

Introduction

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

Usage

From source file com.flowpowered.network.pipeline.MessageDecoder.java

/**
 * A {@link ReplayingDecoder} which decodes {@link ByteBuf}s into {@link Message}s.
 */
public class MessageDecoder extends ReplayingDecoder<ByteBuf> {
    private final MessageHandler messageHandler;

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

/**
 * A {@link PreprocessReplayingDecoder} which decodes {@link ByteBuf}s into Common {@link Message}s.
 */
public class MessageDecoder extends ReplayingDecoder<ByteBuf> {
    private final MessageHandler messageHandler;

From source file com.foilen.smalltools.net.commander.channel.CommanderDecoder.java

/**
 * <pre>
 * Decodes this protocol:
 * - classNameSize:int
 * - className:String (must be a {@link Runnable})
 * - jsonContentSize:int

From source file com.ghrum.common.protocol.ProtocolReplayingDecoder.java

/**
 * Define the {@link ReplayingDecoder} for handling header
 * <p>
 * It will convert raw frames to {@link Message} frames
 */
public class ProtocolReplayingDecoder extends ReplayingDecoder<ProtocolReplayingDecoder.DecoderState> {

From source file com.github.jrialland.ajpclient.impl.handlers.AjpMessagesHandler.java

/**
 * reads a channel, and interprets incoming messages as ajp13 messages
 *
 * @author Julien Rialland <julien.rialland@gmail.com>
 *
 */

From source file com.shelf.messagepack.MessagePackFrameDecoder.java

/**
 *
 * @author t_yano
 */
public class MessagePackFrameDecoder extends ReplayingDecoder<Void> {
    private static final Logger LOGGER = LoggerFactory.getLogger(MessagePackFrameDecoder.class);

From source file com.spotify.netty4.handler.codec.zmtp.ZMTPCodec.java

/**
 * A ZMTP codec for Netty.
 *
 * Note: A single codec instance is not {@link Sharable} among multiple {@link Channel} instances.
 */
public class ZMTPCodec extends ReplayingDecoder<Void> {

From source file com.srotya.sidewinder.core.ingress.binary.SeriesDataPointDecoder.java

/**
 * @author ambud
 */
public class SeriesDataPointDecoder extends ReplayingDecoder<Void> {

    @Override

From source file com.streamsets.pipeline.lib.parser.net.netflow.NetflowCommonDecoder.java

/**
 * Created by reading:
 * <a href="https://github.com/brockn/netflow">ASF licensed scala based netflow</a>,
 * <a href="http://www.cisco.com/en/US/technologies/tk648/tk362/technologies_white_paper09186a00800a3db9.html">v9 spec</a>,
 * and
 * <a href="http://www.cisco.com/c/en/us/td/docs/net_mgmt/netflow_collection_engine/3-6/user/guide/format.html#wp1003394">v1 and v5 spec</a>

From source file com.trinity.engine.protocol.detail.ConnectionReplayingDecoder.java

/**
 * Define the {@link ReplayingDecoder} for handling header
 * <p>
 * It will convert raw frames to message frames
 */
public final class ConnectionReplayingDecoder extends ReplayingDecoder<ConnectionReplayingDecoder.DecoderState> {