com.microsoft.azure.storage.blob.IProgressReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob Show documentation
Show all versions of azure-storage-blob Show documentation
The Azure Storage Java Blob library.
package com.microsoft.azure.storage.blob;
public interface IProgressReceiver {
/**
* The callback function invoked as progress is reported.
*
* @param bytesTransferred
* The total number of bytes transferred during this transaction.
*/
public void reportProgress(long bytesTransferred);
}