Skip to content
Update Kotlin coroutines authored by umaumax's avatar umaumax
...@@ -107,6 +107,10 @@ async function's result is 42 ...@@ -107,6 +107,10 @@ async function's result is 42
pythonのwithやC++のmutexのブロックのような処理を実現する pythonのwithやC++のmutexのブロックのような処理を実現する
## タイムアウト
`withTimeout()``TimeoutCancellationException`例外が投げられるが、`withTimeoutOrNull()`は例外を投げない
[KotlinのCoroutineを試す (Cancellation and timeouts) - abcdefg.....]( https://pppurple.hatenablog.com/entry/2021/03/31/031146#Timeout )
## Dispatchers ## Dispatchers
4種類のディスパッチャーがある 4種類のディスパッチャーがある
... ...
......