org.jets3t.service.multithread
Class CreateBucketsEvent
java.lang.Object
org.jets3t.service.multithread.ServiceEvent
org.jets3t.service.multithread.CreateBucketsEvent
public class CreateBucketsEvent
- extends ServiceEvent
Multi-threaded service event fired by S3ServiceMulti.createBuckets(S3Bucket[])
.
EVENT_IN_PROGRESS events include an array of the S3Bucket
s that have been created
since the last progress event was fired. These objects are available via
getCreatedBuckets()
.
EVENT_CANCELLED events include an array of the S3Bucket
s that had not been created
before the operation was cancelled. These objects are available via
getCancelledBuckets()
.
- Author:
- James Murty
newErrorEvent
public static CreateBucketsEvent newErrorEvent(Throwable t,
Object uniqueOperationId)
newStartedEvent
public static CreateBucketsEvent newStartedEvent(ThreadWatcher threadWatcher,
Object uniqueOperationId)
newInProgressEvent
public static CreateBucketsEvent newInProgressEvent(ThreadWatcher threadWatcher,
S3Bucket[] completedBuckets,
Object uniqueOperationId)
newCompletedEvent
public static CreateBucketsEvent newCompletedEvent(Object uniqueOperationId)
newCancelledEvent
public static CreateBucketsEvent newCancelledEvent(S3Bucket[] incompletedBuckets,
Object uniqueOperationId)
newIgnoredErrorsEvent
public static CreateBucketsEvent newIgnoredErrorsEvent(ThreadWatcher threadWatcher,
Throwable[] ignoredErrors,
Object uniqueOperationId)
getCreatedBuckets
public S3Bucket[] getCreatedBuckets()
throws IllegalStateException
- Returns:
- the S3Buckets that have been created since the last progress event was fired.
- Throws:
IllegalStateException
- created buckets are only available from EVENT_IN_PROGRESS events.
getCancelledBuckets
public S3Bucket[] getCancelledBuckets()
throws IllegalStateException
- Returns:
- the S3Buckets that had not been created before the operation was cancelled.
- Throws:
IllegalStateException
- cancelled buckets are only available from EVENT_CANCELLED events.