com.qcloud.cos.transfer.DownloadMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.transfer;
import java.util.concurrent.Future;
public class DownloadMonitor implements TransferMonitor {
private final Future> future;
private final DownloadImpl download;
public DownloadMonitor(DownloadImpl download, Future> future) {
this.download = download;
this.future = future;
}
@Override
public Future> getFuture() {
return future;
}
@Override
public boolean isDone() {
return download.isDone();
}
}