Exemplo n.º 1
0
 public S3OutputMethod(S3OutputMethod template)
 {
     s3adaptor     = template.s3adaptor;
     bucketName    = template.bucketName;
     basePath      = template.basePath;
     bucketCreated = template.bucketCreated;
 }
Exemplo n.º 2
0
		public S3OutputMethod(S3OutputMethod template)
		{
			this.s3adaptor = template.s3adaptor;
			this.bucketName = template.bucketName;
			this.basePath = template.basePath;
			this.bucketCreated = template.bucketCreated;
		}
Exemplo n.º 3
0
 public S3OutputMethod(S3Adaptor s3adaptor, string bucketName, string basePath)
 {
     this.s3adaptor  = s3adaptor;
     this.bucketName = bucketName;
     this.basePath   = basePath;
     bucketCreated   = new HeapBool(false);
 }
Exemplo n.º 4
0
		public S3OutputMethod(S3Adaptor s3adaptor, string bucketName, string basePath)
		{
			this.s3adaptor = s3adaptor;
			this.bucketName = bucketName;
			this.basePath = basePath;
			this.bucketCreated = new HeapBool(false);
		}