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

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

Introduction

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

Usage

From source file com.heliosapm.utils.buffer.BufferManager.java

/**
 * <p>Title: BufferManager</p>
 * <p>Description: Manages and monitors buffer allocation</p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.utils.buffer.BufferManager</code></p>

From source file io.advantageous.conekt.net.impl.PartialPooledByteBufAllocator.java

/**
 * A {@link io.netty.buffer.ByteBufAllocator} which is partial pooled. Which means only direct {@link io.netty.buffer.ByteBuf}s are pooled. The rest
 * is unpooled.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file io.jsync.net.impl.PartialPooledByteBufAllocator.java

/**
 * A {@link ByteBufAllocator} which is partial pooled. Which means only direct {@link ByteBuf}s are pooled. The rest
 * is unpooled.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file io.vertx.core.net.impl.PartialPooledByteBufAllocator.java

/**
 * A {@link io.netty.buffer.ByteBufAllocator} which is partial pooled. Which means only direct {@link io.netty.buffer.ByteBuf}s are pooled. The rest
 * is unpooled.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file org.apache.activemq.artemis.core.remoting.impl.netty.PartialPooledByteBufAllocator.java

/**
 * A {@link ByteBufAllocator} which is partial pooled. Which means only direct {@link ByteBuf}s are pooled. The rest
 * is unpooled.
 */
public class PartialPooledByteBufAllocator implements ByteBufAllocator {
    private static final ByteBufAllocator POOLED = new PooledByteBufAllocator(false);

From source file org.apache.activemq.core.remoting.impl.netty.PartialPooledByteBufAllocator.java

/**
 * A {@link ByteBufAllocator} which is partial pooled. Which means only direct {@link ByteBuf}s are pooled. The rest
 * is unpooled.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file org.apache.activemq.transport.amqp.client.transport.PartialPooledByteBufAllocator.java

/**
 * A {@link ByteBufAllocator} which is partial pooled. Which means only direct
 * {@link ByteBuf}s are pooled. The rest is unpooled.
 *
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */

From source file org.apache.arrow.memory.ArrowByteBufAllocator.java

/**
 * An implementation of ByteBufAllocator that wraps a Arrow BufferAllocator. This allows the RPC layer to be accounted
 * and managed using Arrow's BufferAllocator infrastructure. The only thin different from a typical BufferAllocator is
 * the signature and the fact that this Allocator returns ExpandableByteBufs which enable otherwise non-expandable
 * ArrowBufs to be expandable.
 */

From source file org.apache.arrow.memory.DrillByteBufAllocator.java

/**
 * An implementation of ByteBufAllocator that wraps a Drill BufferAllocator. This allows the RPC layer to be accounted
 * and managed using Drill's BufferAllocator infrastructure. The only thin different from a typical BufferAllocator is
 * the signature and the fact that this Allocator returns ExpandableByteBufs which enable otherwise non-expandable
 * DrillBufs to be expandable.
 */

From source file org.apache.bookkeeper.common.allocator.impl.ByteBufAllocatorImpl.java

/**
 * Implementation of {@link ByteBufAllocator}.
 */
public class ByteBufAllocatorImpl extends AbstractByteBufAllocator implements ByteBufAllocator {

    private static final Logger log = LoggerFactory.getLogger(ByteBufAllocatorImpl.class);