Package com.ibm.wsspi.collective.plugins
Interface CollectiveExecutor
-
public interface CollectiveExecutorThis interface contains actions that can be done in a collective environment, such as archive deployment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteFile(java.lang.String taskID, boolean async)Deletes a file location in the collective.voiddeployArchive(java.lang.String taskID, boolean async)Deploy an archive to the collective.
-
-
-
Method Detail
-
deployArchive
void deployArchive(java.lang.String taskID, boolean async) throws java.io.IOExceptionDeploy an archive to the collective.- Parameters:
taskID- a token to be used together withTaskStorageto fetch the task informationasync- a boolean specifying if this task should be executed in asynchronous mode- Throws:
java.io.IOException
-
deleteFile
void deleteFile(java.lang.String taskID, boolean async) throws java.io.IOExceptionDeletes a file location in the collective.- Parameters:
taskID- a token to be used together withTaskStorageto fetch the task informationasync- a boolean specifying if this task should be executed in asynchronous mode- Throws:
java.io.IOException
-
-