We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
AwaitAllScope
1 parent 90a5140 commit d007671Copy full SHA for d007671
arrow-libs/fx/arrow-fx-coroutines/src/commonMain/kotlin/arrow/fx/coroutines/await/AwaitAllScope.kt
@@ -19,7 +19,7 @@ import kotlin.coroutines.EmptyCoroutineContext
19
20
@RequiresOptIn(level = RequiresOptIn.Level.WARNING, message = "This API is work-in-progress and is subject to change.")
21
@Retention(AnnotationRetention.BINARY)
22
-@Target(AnnotationTarget.FUNCTION)
+@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CLASS)
23
public annotation class ExperimentalAwaitAllApi
24
25
@ExperimentalAwaitAllApi
@@ -69,6 +69,7 @@ public suspend fun <A> CoroutineScope.awaitAll(
69
* }
70
* ```
71
*/
72
+@ExperimentalAwaitAllApi
73
public class AwaitAllScope(
74
private val scope: CoroutineScope
75
): CoroutineScope by scope {
0 commit comments