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

nl.weeaboo.lua2.vm.LuaThreadStatus Maven / Gradle / Ivy

package nl.weeaboo.lua2.vm;

/**
 * State of a {@link LuaThread}
 */
public enum LuaThreadStatus {

    INITIAL,
    SUSPENDED,
    RUNNING,
    END_CALL,

    /**
     * @deprecated No longer used.
     */
    @Deprecated
    ERROR,

    DEAD;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy