Last active
July 7, 2019 18:33
-
-
Save RBusarow/82b3fc791d89e2bbfad88e2d9fa48526 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public fun CoroutineScope.launch( | |
context: CoroutineContext = EmptyCoroutineContext, | |
start: CoroutineStart = CoroutineStart.DEFAULT, | |
block: suspend CoroutineScope.() -> Unit | |
): Job {...} | |
public fun <T> CoroutineScope.async( | |
context: CoroutineContext = EmptyCoroutineContext, | |
start: CoroutineStart = CoroutineStart.DEFAULT, | |
block: suspend CoroutineScope.() -> T | |
): Deferred<T> {...} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment