or ``` fun ScheduledExecutorService.after(timeVal...
# language-proposals
u
or
Copy code
fun ScheduledExecutorService.after(timeValue: TimeValue, block: () -> Unit) =
        schedule(block, timeValue.toMilliseconds, TimeUnit.MILLISECONDS)