All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.activities.ActivityStatus Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.activities;

public enum ActivityStatus {

    /**
     * An activity is running
     */
    RUNNING,

    /**
     * The activity was cancelled. It may or may not still be running (verify stop time).
     */
    CANCELLED,

    /**
     * The activity completed successfully
     */
    SUCCESSFUL,

    /**
     * An error occurred while running this activity
     */
    FAILED,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy