com.qcloud.cos.transfer.UploadPartCallable 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.Callable;
import com.qcloud.cos.COS;
import com.qcloud.cos.model.PartETag;
import com.qcloud.cos.model.UploadPartRequest;
public class UploadPartCallable implements Callable {
private final COS cos;
private final UploadPartRequest request;
public UploadPartCallable(COS cos, UploadPartRequest request) {
this.cos = cos;
this.request = request;
}
public PartETag call() throws Exception {
PartETag partETag = cos.uploadPart(request).getPartETag();
return partETag;
}
}