io.parallec.core.bean.TaskRunMode 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.bean;
/**
* The Enum Mode of running Parallel Task: async or sync.
*/
public enum TaskRunMode {
/** The sync. */
SYNC,
/** The async. */
ASYNC
}