All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.resteasy.runtime.standalone.BufferAllocator Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.resteasy.runtime.standalone;

import io.netty.buffer.ByteBuf;

public interface BufferAllocator {

    ByteBuf allocateBuffer();

    ByteBuf allocateBuffer(boolean direct);

    ByteBuf allocateBuffer(int bufferSize);

    ByteBuf allocateBuffer(boolean direct, int bufferSize);

    int getBufferSize();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy