Flow Test
Toggle table of contents
jvm
Platform filter
jvm
Switch theme
Search in API
Flow Test
Flow Test
/
com.uandcode.flowtest
/
JobStatus
Job
Status
sealed
class
JobStatus
<
out
T
>
Inheritors
Executing
Cancelled
Completed
Failed
Members
Types
Cancelled
Link copied to clipboard
data
object
Cancelled
:
JobStatus
<
Nothing
>
Completed
Link copied to clipboard
data
class
Completed
<
out
T
>
(
val
result
:
T
)
:
JobStatus
<
T
>
Executing
Link copied to clipboard
data
object
Executing
:
JobStatus
<
Nothing
>
Failed
Link copied to clipboard
data
class
Failed
(
val
exception
:
Exception
)
:
JobStatus
<
Nothing
>