> +   /**
> +    * Always close your service when you're done with it.
> +    */
> +   public void close() {
> +      if (storage != null) {
> +         storage.getContext().close();
> +      }
> +   }
> +
> +   /**
> +    * A Callable responsible for uploading an object to a container. Returns 
> a BlobDetail with the eTag of the
> +    * uploaded object.
> +    */
> +   private class BlobUploader implements Callable<BlobDetail> {
> +      private String container;
> +      private BlobDetail toBeUploadedBlobDetail;

Yep.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/11/files#r5439000

Reply via email to