Squishy
Toggle table of contents
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
Squishy
core
/
mtctx.squishy.foundation
/
Concurrency
Concurrency
interface
Concurrency
Members
Functions
run
Async
Link copied to clipboard
abstract
fun
runAsync
(
task
:
(
)
->
Unit
)
:
Any
?
run
Later
Link copied to clipboard
abstract
fun
runLater
(
delay
:
Duration
,
task
:
(
)
->
Unit
)
:
Any
?
run
Repeating
Link copied to clipboard
abstract
fun
runRepeating
(
initialDelay
:
Duration
,
interval
:
Duration
,
task
:
(
)
->
Unit
)
:
TaskHandle
run
Sync
Link copied to clipboard
abstract
fun
runSync
(
task
:
(
)
->
Unit
)
:
Any
?