com.sendsafely.ProgressInterface Maven / Gradle / Ivy
package com.sendsafely;
/**
* An interface, which can be implemented to track the progress of the file currently being uploaded.
*
*/
public interface ProgressInterface {
/**
* @description Implement this function in order to get progress information which can be used to update the user on the progress of the current file uploads. Will return a double between 0 and 1.
* @param progress
*/
public void updateProgress(String fileId, double progress);
public void gotFileId(String fileId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy