你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ProgressReceiver Interface
Implements
@Deprecated
public interface ProgressReceiver
extends ProgressListener
Note
This class has been deprecated. Use ProgressListener.
A 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. It is recommended that this type be used in conjunction with addProgressReporting(Flux<ByteBuffer> data, ProgressReceiver progressReceiver) to enable reporting on sequential transfers. Note that any method accepting a ParallelTransferOptions will use the ProgressReceiver
specified there and will handle the logic to coordinate the reporting between parallel
Method Summary
Modifier and Type | Method and Description |
---|---|
default void | handleProgress(long bytesTransferred) |
abstract void |
reportProgress(long bytesTransferred)
The callback function invoked as progress is reported. |
Method Details
handleProgress
public default void handleProgress(long bytesTransferred)
Parameters:
reportProgress
public abstract void reportProgress(long bytesTransferred)
The callback function invoked as progress is reported.
Parameters: