Example usage for org.apache.http.nio.util ExpandableBuffer subclass-usage

List of usage examples for org.apache.http.nio.util ExpandableBuffer subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.nio.util ExpandableBuffer subclass-usage.

Usage

From source file rx.apache.http.consumers.ExpandableByteBuffer.java

class ExpandableByteBuffer extends ExpandableBuffer {
    public ExpandableByteBuffer(int size) {
        super(size, HeapByteBufferAllocator.INSTANCE);
    }

    public ExpandableByteBuffer() {

From source file org.apache.cxf.transport.http.asyncclient.SharedInputBuffer.java

/**
 * Content buffer that can be shared by multiple threads, usually the I/O dispatch of 
 * an I/O reactor and a worker thread.
 * <p/>
 * The I/O dispatch thread is expect to transfer data from {@link ContentDecoder} to the buffer
 *   by calling {@link #consumeContent(ContentDecoder)}.

From source file org.apache.cxf.transport.http.asyncclient.SharedOutputBuffer.java

/**
 * Content buffer that can be shared by multiple threads, usually the I/O dispatch of 
 * an I/O reactor and a worker thread.
 * <p/>
 * The I/O dispatch thread is expected to transfer data from the buffer to
 *   {@link ContentEncoder} by calling {@link #produceContent(ContentEncoder)}.

From source file org.apache.synapse.transport.nhttp.NhttpSharedOutputBuffer.java

/**
 * Implementation of the {@link ContentOutputBuffer} interface that can be
 * shared by multiple threads, usually the I/O dispatch of an I/O reactor and
 * a worker thread.
 * <p>
 * The I/O dispatch thread is expected to transfer data from the buffer to