Interface ProgressMonitor


public interface ProgressMonitor
Handler to monitor long-running file operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    updateProgress(int bytesWritten, int totalBytes)
    Callback to notify the user as to the progress of the how many bytes have been sent.
  • Method Details

    • updateProgress

      void updateProgress(int bytesWritten, int totalBytes)
      Callback to notify the user as to the progress of the how many bytes have been sent.
      Parameters:
      bytesWritten - bytes currently written
      totalBytes - total bytes to send
      See Also: