public final class CreateBucketsEvent extends ServiceEvent
ThreadedStorageService.createBuckets(String[])
.
EVENT_IN_PROGRESS events include an array of the StorageBucket
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 StorageBucket
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 |
---|---|
StorageBucket[] |
getCancelledBuckets() |
StorageBucket[] |
getCreatedBuckets() |
static CreateBucketsEvent |
newCancelledEvent(StorageBucket[] incompletedBuckets,
Object uniqueOperationId) |
static CreateBucketsEvent |
newCompletedEvent(Object uniqueOperationId) |
static CreateBucketsEvent |
newErrorEvent(Throwable t,
Object uniqueOperationId) |
static CreateBucketsEvent |
newIgnoredErrorsEvent(ThreadWatcher threadWatcher,
Throwable[] ignoredErrors,
Object uniqueOperationId) |
static CreateBucketsEvent |
newInProgressEvent(ThreadWatcher threadWatcher,
StorageBucket[] completedBuckets,
Object uniqueOperationId) |
static CreateBucketsEvent |
newStartedEvent(ThreadWatcher threadWatcher,
Object uniqueOperationId) |
getErrorCause, getEventCode, getIgnoredErrors, getThreadWatcher, getUniqueOperationId, setErrorCause, setIgnoredErrors, setThreadWatcher, toString
public static CreateBucketsEvent newErrorEvent(Throwable t, Object uniqueOperationId)
public static CreateBucketsEvent newStartedEvent(ThreadWatcher threadWatcher, Object uniqueOperationId)
public static CreateBucketsEvent newInProgressEvent(ThreadWatcher threadWatcher, StorageBucket[] completedBuckets, Object uniqueOperationId)
public static CreateBucketsEvent newCompletedEvent(Object uniqueOperationId)
public static CreateBucketsEvent newCancelledEvent(StorageBucket[] incompletedBuckets, Object uniqueOperationId)
public static CreateBucketsEvent newIgnoredErrorsEvent(ThreadWatcher threadWatcher, Throwable[] ignoredErrors, Object uniqueOperationId)
public StorageBucket[] getCreatedBuckets() throws IllegalStateException
StorageBucket
s that have been created since the last progress event was fired.IllegalStateException
- created buckets are only available from EVENT_IN_PROGRESS events.public StorageBucket[] getCancelledBuckets() throws IllegalStateException
StorageBucket
s that had not been created before the operation was cancelled.IllegalStateException
- cancelled buckets are only available from EVENT_CANCELLED events.Copyright © 2006–2018. All rights reserved.