public class CreateBucketsEvent extends ServiceEvent
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()
.
EVENT_CANCELLED, EVENT_COMPLETED, EVENT_ERROR, EVENT_IGNORED_ERRORS, EVENT_IN_PROGRESS, EVENT_STARTED
Modifier and Type | Method and Description |
---|---|
S3Bucket[] |
getCancelledBuckets() |
S3Bucket[] |
getCreatedBuckets() |
static CreateBucketsEvent |
newCancelledEvent(S3Bucket[] incompletedBuckets,
java.lang.Object uniqueOperationId) |
static CreateBucketsEvent |
newCompletedEvent(java.lang.Object uniqueOperationId) |
static CreateBucketsEvent |
newErrorEvent(java.lang.Throwable t,
java.lang.Object uniqueOperationId) |
static CreateBucketsEvent |
newIgnoredErrorsEvent(ThreadWatcher threadWatcher,
java.lang.Throwable[] ignoredErrors,
java.lang.Object uniqueOperationId) |
static CreateBucketsEvent |
newInProgressEvent(ThreadWatcher threadWatcher,
S3Bucket[] completedBuckets,
java.lang.Object uniqueOperationId) |
static CreateBucketsEvent |
newStartedEvent(ThreadWatcher threadWatcher,
java.lang.Object uniqueOperationId) |
getThreadWatcher
getErrorCause, getEventCode, getIgnoredErrors, getUniqueOperationId, setErrorCause, setIgnoredErrors, setThreadWatcher, toString
public static CreateBucketsEvent newErrorEvent(java.lang.Throwable t, java.lang.Object uniqueOperationId)
public static CreateBucketsEvent newStartedEvent(ThreadWatcher threadWatcher, java.lang.Object uniqueOperationId)
public static CreateBucketsEvent newInProgressEvent(ThreadWatcher threadWatcher, S3Bucket[] completedBuckets, java.lang.Object uniqueOperationId)
public static CreateBucketsEvent newCompletedEvent(java.lang.Object uniqueOperationId)
public static CreateBucketsEvent newCancelledEvent(S3Bucket[] incompletedBuckets, java.lang.Object uniqueOperationId)
public static CreateBucketsEvent newIgnoredErrorsEvent(ThreadWatcher threadWatcher, java.lang.Throwable[] ignoredErrors, java.lang.Object uniqueOperationId)
public S3Bucket[] getCreatedBuckets() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- created buckets are only available from EVENT_IN_PROGRESS events.public S3Bucket[] getCancelledBuckets() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- cancelled buckets are only available from EVENT_CANCELLED events.