org.apache.hadoop.fs.cosn.buffer.CosNBufferFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hadoop-cos Show documentation
Show all versions of hadoop-cos Show documentation
This module contains code to support integration with Tencent Cloud COS.
It also declares the dependencies needed to work with COS.
package org.apache.hadoop.fs.cosn.buffer;
public interface CosNBufferFactory {
CosNByteBuffer create(int size);
void release(CosNByteBuffer cosNByteBuffer);
}