> +
> + private class BlobUploader implements Runnable {
> + private ConcurrentLinkedQueue<MultipartPart> list;
> + private MultipartUpload mpu;
> + private int partNumber;
> + private Payload payload;
> +
> + BlobUploader(MultipartUpload mpu, int partNumber, Payload payload,
> ConcurrentLinkedQueue<MultipartPart> list) {
> + this.mpu = mpu;
> + this.partNumber = partNumber;
> + this.payload = payload;
> + this.list = list;
> + }
> +
> + @Override
> + public void run() {
If you make this a `Callable` can you use the return value instead of the
explicit `list`?
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/975/files/70ba6e0f5aa5c660cab27eb6a450ca7f1e435235#r67775010