Interface FileSenderProgressListener


public interface FileSenderProgressListener
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    aborted(int id, File f, Exception ex)
     
    void
    completed(int id, File f)
     
    void
    inProgress(int id, File f, long bytesSent, long length)
     
    void
    started(int id, File f, long length)
     
  • Method Details

    • started

      void started(int id, File f, long length)
    • inProgress

      void inProgress(int id, File f, long bytesSent, long length)
    • completed

      void completed(int id, File f)
    • aborted

      void aborted(int id, File f, Exception ex)