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
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
28
28
* resource inside the [block] that needs closing or release outside the block.
29
29
* See the
30
-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
30
+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
31
31
* section of the coroutines guide for details.
32
32
*
33
33
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
@@ -59,7 +59,7 @@ public suspend fun <T> withTimeout(timeMillis: Long, block: suspend CoroutineSco
59
59
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
60
60
* resource inside the [block] that needs closing or release outside the block.
61
61
* See the
62
-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
62
+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
63
63
* section of the coroutines guide for details.
64
64
*
65
65
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
@@ -86,7 +86,7 @@ public suspend fun <T> withTimeout(timeout: Duration, block: suspend CoroutineSc
86
86
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
87
87
* resource inside the [block] that needs closing or release outside the block.
88
88
* See the
89
-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
89
+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
90
90
* section of the coroutines guide for details.
91
91
*
92
92
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
@@ -127,7 +127,7 @@ public suspend fun <T> withTimeoutOrNull(timeMillis: Long, block: suspend Corout
127
127
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
128
128
* resource inside the [block] that needs closing or release outside the block.
129
129
* See the
130
-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
130
+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
131
131
* section of the coroutines guide for details.
132
132
*
133
133
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
0 commit comments