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

com.bazaarvoice.emodb.blob.api.Blob Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.blob.api;

import java.io.IOException;
import java.io.OutputStream;

public interface Blob extends BlobMetadata, StreamSupplier {

    /**
     * Returns the subset of bytes within the blob that will returned by the {@link #writeTo} method.
     */
    Range getByteRange();

    /**
     * Copies the blob content byte range to the specified output stream.
     */
    void writeTo(OutputStream out) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy