> @@ -44,6 +47,16 @@ public PutOptions(boolean multipart) {
> this.multipart = multipart;
> }
>
> + public PutOptions(boolean multipart, ExecutorService customExecutor) {
> + this.multipart = multipart;
> + this.customExecutor = customExecutor;
> + }
> +
> + public PutOptions(ExecutorService customExecutor) {
> + this.multipart = true;
> + this.customExecutor = customExecutor;
Call `Preconditions.checkNotNull`.
---
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/0b784d15fa6f35ceb82028e1823e85c31ccf513d#r68281873