/*
* Copyright (c) 2014 Red Hat, Inc. and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.core.spi;
import io.netty.buffer.ByteBuf;
import io.vertx.core.buffer.Buffer;
Author: Tim Fox
/**
* @author <a href="http://tfox.org">Tim Fox</a>
*/
public interface BufferFactory {
Buffer buffer(int initialSizeHint);
Buffer buffer();
Buffer buffer(String str);
Buffer buffer(String str, String enc);
Buffer buffer(byte[] bytes);
Buffer buffer(ByteBuf byteBuffer);
Buffer directBuffer(String str, String enc);
Create a direct buffer, use this with care as Vert.x buffers are not releasable (unpooled) and you would need to release the underlying Netty wrapped ByteBuf
. Params: - bytes – the bytes
Returns: the buffer
/**
* Create a direct buffer, use this with care as Vert.x buffers are not releasable (unpooled) and you would need
* to release the underlying Netty wrapped {@code ByteBuf}.
*
* @param bytes the bytes
* @return the buffer
*/
Buffer directBuffer(byte[] bytes);
}