You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
32
32
* section of the coroutines guide for details.
33
33
*
34
-
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
34
+
* For a description of how waiting for a specific duration is implemented, see [delay].
35
35
*
36
36
* @param timeMillis timeout time in milliseconds.
37
37
*/
@@ -63,7 +63,7 @@ public suspend fun <T> withTimeout(timeMillis: Long, block: suspend CoroutineSco
63
63
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
64
64
* section of the coroutines guide for details.
65
65
*
66
-
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
66
+
* For a description of how waiting for a specific duration is implemented, see [delay].
67
67
*/
68
68
publicsuspendfun <T> withTimeout(timeout:Duration, block:suspendCoroutineScope.() ->T): T {
0 commit comments