Interface CollectiveExecutor


public interface CollectiveExecutor
This interface contains actions that can be done in a collective environment, such as archive deployment.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    deleteFile(String taskID, boolean async)
    Deletes a file location in the collective.
    void
    deployArchive(String taskID, boolean async)
    Deploy an archive to the collective.
  • Method Details

    • deployArchive

      void deployArchive(String taskID, boolean async) throws IOException
      Deploy an archive to the collective.
      Parameters:
      taskID - a token to be used together with TaskStorage to fetch the task information
      async - a boolean specifying if this task should be executed in asynchronous mode
      Throws:
      IOException
    • deleteFile

      void deleteFile(String taskID, boolean async) throws IOException
      Deletes a file location in the collective.
      Parameters:
      taskID - a token to be used together with TaskStorage to fetch the task information
      async - a boolean specifying if this task should be executed in asynchronous mode
      Throws:
      IOException