Package 

Interface UploadListener


  • 
    public interface UploadListener
    
                        

    Collection of callbacks to get info about video uploads

    • Method Detail

      • onUploadDone

         abstract Unit onUploadDone(String videoId)

        Called when video upload is finished

        Parameters:
        videoId - ID of video that is done uploading
      • onUploadStarted

         abstract Unit onUploadStarted(String uploadId, String videoId)

        Called when video upload starts

        Parameters:
        uploadId - ID of the upload that can be used to cancel the upload
        videoId - ID of video that is being uploaded
      • onUploadCancelled

         abstract Unit onUploadCancelled(String videoId)

        Called when upload gets cancelled

        Parameters:
        videoId - ID of video that upload is canceled for