io.parallec.core.task.ParallelTaskState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parallec-core Show documentation
Show all versions of parallec-core Show documentation
Parallec: Parallel Async HTTP/SSH/PING/TCP Client library.
Details at: http://www.parallec.io
The newest version!
package io.parallec.core.task;
// Job Id to Job Data
/**
* The Enum ParallelTaskState.
*/
// finishNotGathered is slave are ready but not send to Director
public enum ParallelTaskState {
/** The waiting. */
WAITING,
/** The in progress. */
IN_PROGRESS,
/** The completed without error. */
COMPLETED_WITHOUT_ERROR,
/** The completed with error. */
COMPLETED_WITH_ERROR
}