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

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

Introduction

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

Usage

From source file com.addthis.basis.chars.ReadOnlyUtfBuf.java

/**
 * A CharSequence backed by a ByteBuf instead of a String. This
 * version supports all characters. The backing store is a
 * variable width utf8 representation, but for char seq's sake,
 * we may emulate their non-sense semi-variable-width chars to
 * some extent when accessed via the CharSequence interface.

From source file com.linecorp.armeria.internal.http.ByteBufHttpData.java

/**
 * A {@link HttpData} that is backed by a {@link ByteBuf} for optimizing certain internal use cases. Not for
 * general use.
 */
public class ByteBufHttpData extends AbstractHttpData implements ByteBufHolder {

From source file com.linecorp.armeria.unsafe.ByteBufHttpData.java

/**
 * A {@link HttpData} that is backed by a {@link ByteBuf} for optimizing certain internal use cases. Not for
 * general use.
 */
public class ByteBufHttpData extends AbstractHttpData implements ByteBufHolder {

From source file com.twitter.http2.HttpDataFrame.java

/**
 * An HTTP/2 DATA Frame
 */
public interface HttpDataFrame extends ByteBufHolder, HttpStreamFrame {

    /**

From source file com.uber.tchannel.codecs.TFrame.java

/**
 * {@link TFrame} represents a common TChannel frame that is a primitive carrier for all frames in the TChannel
 * protocol. The {@linkplain TFrame} has a simple 16-byte header that contains information on the `size` of the payload,
 * the TChannel message `type` and the `id` of the message.
 * <h3>From the Docs</h3>
 * Each message is encapsulated in a frame with some additional information that is common across all message types.

From source file com.uber.tchannel.frames.CallFrame.java

public abstract class CallFrame extends Frame implements ByteBufHolder {

    public static final byte MORE_FRAGMENTS_REMAIN_MASK = (byte) 0x01;
    public static final short MAX_ARG1_LENGTH = 16384;

    protected byte flags = 0;

From source file divconq.http.multipart.HttpData.java

/**
 * Extended interface for InterfaceHttpData
 */
public interface HttpData extends InterfaceHttpData, ByteBufHolder {

    /**

From source file io.advantageous.conekt.dns.impl.netty.DnsResource.java

/**
 * Represents any resource record (answer, authority, or additional resource
 * records).
 */
public class DnsResource extends DnsEntry implements ByteBufHolder {

From source file io.advantageous.conekt.dns.impl.netty.DnsResponse.java

/**
 * A DNS response packet which is sent to a client after a server receives a
 * query.
 */
public class DnsResponse extends DnsMessage<DnsResponseHeader> implements ByteBufHolder {

From source file io.jsync.dns.impl.netty.DnsResource.java

/**
 * Represents any resource record (answer, authority, or additional resource
 * records).
 */
public class DnsResource extends DnsEntry implements ByteBufHolder {