> + > +import com.google.inject.ImplementedBy; > +import org.jclouds.blobstore.domain.Blob; > + > +/** > + * @see <a > href="http://msdn.microsoft.com/en-us/library/windowsazure/dd135726.aspx">Azure > Put Block Documentation</a> > + * > + * @author John Victor Kew > + */ > +@ImplementedBy(AzureBlobBlockUploadStrategy.class) > +public interface MultipartUploadStrategy { > + /* Maximum number of blocks per upload */ > + public static final int MAX_NUMBER_OF_BLOCKS = 50000; > + > + /* Maximum block size */ > + public static final long MAX_BLOCK_SIZE = 4194304L;
Can you write this as 4L * 1024 * 1024? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/52/files#r5019253
