/**
* 超时任务
*/
@Test
fun `test deal with timeout`() = runBlocking<Unit> {
withTimeout(1300) {
repeat(1000) { i ->
println("job:I'm sleeping $i ...")
delay(500)
}
}
} /**
* 超时任务
*/
@Test
fu