How To Get Notified When The Upload Is Complete While Using Transfermanager Class?
I am using TransferManager to upload a video. As TransferManager is asynchronous, How can i get notified when the upload is successfully completed?
Solution 1:
Using TransferManager for uploading returns a Upload object, which is a subclass of Transfer. This object has methods for polling for status (isDone
, getProgress
) or you can also register a ProgressListener to receive events as the transfer is processed.
Post a Comment for "How To Get Notified When The Upload Is Complete While Using Transfermanager Class?"