Example usage for io.netty.buffer ByteBufProcessor interface-usage

List of usage examples for io.netty.buffer ByteBufProcessor interface-usage

Introduction

In this page you can find the example usage for io.netty.buffer ByteBufProcessor interface-usage.

Usage

From source file com.github.subalakr.yasjl.JsonObjectByteBufProcessor.java

/**
 * Processes JSON object value
 *
 * @author Subhashni Balakrishnan
 */
public class JsonObjectByteBufProcessor implements ByteBufProcessor {

From source file com.github.subalakr.yasjl.JsonStringByteBufProcessor.java

/**
 * Processes JSON String value
 *
 * @author Subhashni Balakrishnan
 */
public class JsonStringByteBufProcessor implements ByteBufProcessor {

From source file com.github.subalakr.yasjl.JsonWhiteSpaceByteBufProcessor.java

/**
 * Processes JSON ws
 *
 * @author Subhashni Balakrishnan
 */
public class JsonWhiteSpaceByteBufProcessor implements ByteBufProcessor {

From source file org.apache.tajo.plan.function.stream.FieldSplitProcessor.java

public class FieldSplitProcessor implements ByteBufProcessor {
    private byte delimiter; //the ascii separate character

    public FieldSplitProcessor(byte recordDelimiterByte) {
        this.delimiter = recordDelimiterByte;
    }

From source file org.apache.tajo.plan.function.stream.LineSplitProcessor.java

public class LineSplitProcessor implements ByteBufProcessor {
    public static final byte CR = '\r';
    public static final byte LF = '\n';
    private boolean prevCharCR = false; //true of prev char was CR

    @Override

From source file org.apache.tajo.storage.text.FieldSplitProcessor.java

public class FieldSplitProcessor implements ByteBufProcessor {
    private byte delimiter; //the ascii separate character

    public FieldSplitProcessor(byte recordDelimiterByte) {
        this.delimiter = recordDelimiterByte;
    }

From source file org.apache.tajo.storage.text.LineSplitProcessor.java

public class LineSplitProcessor implements ByteBufProcessor {
    public static final byte CR = '\r';
    public static final byte LF = '\n';
    private boolean prevCharCR = false; //true of prev char was CR

    @Override

From source file org.apache.tajo.storage.text.MultiBytesFieldSplitProcessor.java

public class MultiBytesFieldSplitProcessor implements ByteBufProcessor {

    private int index;
    private final byte[] delimiter;

    public MultiBytesFieldSplitProcessor(byte[] recordDelimiterByte) {

From source file org.codice.alliance.video.stream.mpegts.netty.StartCode.java

/**
 * A start code is the byte sequence 0x00 0x00 0x01 0xXX, where XX is any byte value. When
 * used with ByteBuf.forEachByte, this caller will get the index position of the last byte of
 * the start code.
 */
public class StartCode implements ByteBufProcessor {