kettle

Kotlin utilities for Quilt mod development


Project maintained by Cypher121 Hosted on GitHub Pages — Theme by mattgraham

//kettle/coffee.cypher.kettle.scheduler/Task/State

State

sealed class State

Represents possible lifecycle states of a task.

Inheritors

 
Created
Stopped
Running
Paused

Types

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.