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

com.envisioniot.enos.iot_http_sdk.file.IFileCallback Maven / Gradle / Ivy

package com.envisioniot.enos.iot_http_sdk.file;

import java.io.IOException;
import java.io.InputStream;

/**
 * @author :charlescai
 * @date :2020-04-21
 */
public interface IFileCallback {
    /**
     * handle the async response of the file download request
     * @param inputStream
     * @throws IOException
     */
    void onResponse(InputStream inputStream) throws IOException;

    /**
     * Handle exception we hit while waiting for the response
     * @param failure
     */
    void onFailure(Exception failure);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy