We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab2cff commit 37984f3Copy full SHA for 37984f3
kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/LazyDeferred.kt
@@ -28,6 +28,7 @@ typealias LazyDeferred<T> = Deferred<T>
28
/**
29
* @suppress **Deprecated**: Replace with `async(context, start = false) { ... }`. See [async].
30
*/
31
+@Suppress("DEPRECATION")
32
@Deprecated(message = "This functionality is incorporated into `async", level = DeprecationLevel.WARNING,
33
replaceWith = ReplaceWith("async(context, start = false, block = block)"))
34
public fun <T> lazyDefer(context: CoroutineContext, block: suspend CoroutineScope.() -> T) : Deferred<T> =
0 commit comments