Kotlin utilities for Quilt mod development
//kettle/coffee.cypher.kettle.scheduler/Task/State
sealed class State
Represents possible lifecycle states of a task.
| Created |
| Stopped |
| Running |
| Paused |
| Name | Summary |
|---|---|
| Created | [jvm] sealed class Created : Task.State Represents a task that has just been created or has been reset to its initial state. |
| Paused | [jvm] sealed class Paused : Task.State Represents a task that is running, but is currently paused. |
| Running | [jvm] sealed class Running : Task.State Represents a task that is currently running. |
| Stopped | [jvm] sealed class Stopped : Task.State Represents a task that has finished execution or has been stopped. |