Package org.jets3t.service.multi.event
Class CopyObjectsEvent
- java.lang.Object
-
- org.jets3t.service.multi.event.ServiceEvent
-
- org.jets3t.service.multi.event.CopyObjectsEvent
-
public class CopyObjectsEvent extends ServiceEvent
Multi-threaded service event fired byThreadedStorageService.copyObjects(String, String, String[], StorageObject[], boolean)
.EVENT_IN_PROGRESS events include an array of the Map results returned by the copy operation, see
StorageService.copyObject(String, String, String, StorageObject, boolean)
. These objects are available viagetCopyResults()
.EVENT_CANCELLED events include an array of the
StorageObject
s that had not been copied before the operation was cancelled. These objects are available viagetCancelledObjects()
.- Author:
- James Murty
-
-
Field Summary
-
Fields inherited from class org.jets3t.service.multi.event.ServiceEvent
EVENT_CANCELLED, EVENT_COMPLETED, EVENT_ERROR, EVENT_IGNORED_ERRORS, EVENT_IN_PROGRESS, EVENT_STARTED
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StorageObject[]
getCancelledObjects()
StorageObject[]
getCopiedObjects()
Map[]
getCopyResults()
String[]
getSourceObjectKeys()
static CopyObjectsEvent
newCancelledEvent(StorageObject[] incompletedObjects, Object uniqueOperationId)
static CopyObjectsEvent
newCompletedEvent(Object uniqueOperationId, String[] sourceObjectKeys, StorageObject[] destinationObjects)
static CopyObjectsEvent
newErrorEvent(Throwable t, Object uniqueOperationId)
static CopyObjectsEvent
newIgnoredErrorsEvent(ThreadWatcher threadWatcher, Throwable[] ignoredErrors, Object uniqueOperationId)
static CopyObjectsEvent
newInProgressEvent(ThreadWatcher threadWatcher, Map[] completedResults, Object uniqueOperationId)
static CopyObjectsEvent
newStartedEvent(ThreadWatcher threadWatcher, Object uniqueOperationId)
-
Methods inherited from class org.jets3t.service.multi.event.ServiceEvent
getErrorCause, getEventCode, getIgnoredErrors, getThreadWatcher, getUniqueOperationId, toString
-
-
-
-
Method Detail
-
newErrorEvent
public static CopyObjectsEvent newErrorEvent(Throwable t, Object uniqueOperationId)
-
newStartedEvent
public static CopyObjectsEvent newStartedEvent(ThreadWatcher threadWatcher, Object uniqueOperationId)
-
newInProgressEvent
public static CopyObjectsEvent newInProgressEvent(ThreadWatcher threadWatcher, Map[] completedResults, Object uniqueOperationId)
-
newCompletedEvent
public static CopyObjectsEvent newCompletedEvent(Object uniqueOperationId, String[] sourceObjectKeys, StorageObject[] destinationObjects)
-
newCancelledEvent
public static CopyObjectsEvent newCancelledEvent(StorageObject[] incompletedObjects, Object uniqueOperationId)
-
newIgnoredErrorsEvent
public static CopyObjectsEvent newIgnoredErrorsEvent(ThreadWatcher threadWatcher, Throwable[] ignoredErrors, Object uniqueOperationId)
-
getCopyResults
public Map[] getCopyResults() throws IllegalStateException
- Returns:
- the Map results for the objects that have been copied since the last progress event was fired.
- Throws:
IllegalStateException
- results are only available from EVENT_IN_PROGRESS events.
-
getCancelledObjects
public StorageObject[] getCancelledObjects() throws IllegalStateException
- Returns:
- the
StorageObject
s that were not copied before the operation was cancelled. - Throws:
IllegalStateException
- cancelled objects are only available from EVENT_CANCELLED events.
-
getCopiedObjects
public StorageObject[] getCopiedObjects() throws IllegalStateException
- Returns:
- the
StorageObject
s that were created by a a successful copy operation. - Throws:
IllegalStateException
- copied objects are only available from EVENT_COMPLETED events.
-
getSourceObjectKeys
public String[] getSourceObjectKeys() throws IllegalStateException
- Returns:
- the key names of source objects that were copied in a successful operation.
- Throws:
IllegalStateException
- source object key names are only available from EVENT_COMPLETED events.
-
-