@FunctionalInterface public interface ProgressReceiver
ProgressReceiver is an object that can be used to report progress on network transfers. When specified on
transfer operations, the reportProgress method will be called periodically with the total number of bytes
transferred. The user may configure this method to report progress in whatever format desired.
Note that any method accepting a ParallelDownloadOptions will use
the ProgressReceiver specified there and will handle the logic to coordinate the reporting between parallel
operations.| Modifier and Type | Method and Description |
|---|---|
void |
reportProgress(long bytesTransferred)
The callback function invoked as progress is reported.
|
Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.