xworker.app.userflow.UserTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xworker_app Show documentation
Show all versions of xworker_app Show documentation
XWorker app model liberary.
The newest version!
package xworker.app.userflow;
public class UserTask {
/** 等待执行 */
public static final byte WAIT = 0;
/** 正在执行 */
public static final byte RUNNING = 1;
/** 已结束 */
public static final byte FINISHED = 2;
/** 被中止 */
public static final byte CANCELED = 3;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy