Package org.eclipse.rap.fileupload
Interface FileUploadListener
public interface FileUploadListener
Listener to react on progress and completion of a file upload.
 
 Note: This listener will be called from a different thread than the UI thread.
 Implementations must use Display.asyncExec(Runnable) to access the UI.
 
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoiduploadFailed(FileUploadEvent event) Called when a file upload failed.voiduploadFinished(FileUploadEvent event) Called when a file upload has finished successfully.voiduploadProgress(FileUploadEvent event) Called when new information about an in-progress upload is available.
- 
Method Details- 
uploadProgressCalled when new information about an in-progress upload is available.- Parameters:
- event- event object that contains information about the uploaded file
- See Also:
 
- 
uploadFinishedCalled when a file upload has finished successfully.- Parameters:
- event- event object that contains information about the uploaded file
- See Also:
 
- 
uploadFailedCalled when a file upload failed.- Parameters:
- event- event object that contains information about the uploaded file
- See Also:
 
 
-