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

org.xerial.snappy.buffer.BufferAllocator Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package org.xerial.snappy.buffer;

/**
 * BufferAllocator interface. The implementation of this interface must be thread-safe
 */
public interface BufferAllocator
{

    public byte[] allocate(int size);

    public void release(byte[] buffer);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy