LiquidBounce
Toggle table of contents
0.37.0
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
LiquidBounce
LiquidBounce
/
net.ccbluex.liquidbounce.api.core
/
RetryingJob
Retrying
Job
@
JvmRecord
data
class
RetryingJob
<
T
:
Any
>
(
val
stateFlow
:
StateFlow
<
RetryingJob.State
<
T
>
>
,
val
producerJob
:
Job
)
:
Record
Members
Constructors
Retrying
Job
Link copied to clipboard
constructor
(
stateFlow
:
StateFlow
<
RetryingJob.State
<
T
>
>
,
producerJob
:
Job
)
Types
State
Link copied to clipboard
sealed
interface
State
<
out
T
:
Any
>
Properties
producer
Job
Link copied to clipboard
val
producerJob
:
Job
state
Flow
Link copied to clipboard
val
stateFlow
:
StateFlow
<
RetryingJob.State
<
T
>
>
Functions
get
Final
State
Link copied to clipboard
suspend
fun
getFinalState
(
)
:
RetryingJob.State.Final
<
T
>
get
Now
Link copied to clipboard
fun
getNow
(
)
:
T
?