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

com.box.sdk.UploadFileCallback Maven / Gradle / Ivy

There is a newer version: 4.11.1
Show newest version
package com.box.sdk;

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

/**
 * The callback which allows file content to be written on output stream.
 */
public interface UploadFileCallback {

    /**
     * Called when file upload api is called and requests to write content to output stream.
     *
     * @param outputStream Output stream to write file content to be uploaded.
     *
     * @throws IOException Exception while writing to output stream.
     */
    void writeToStream(OutputStream outputStream) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy