kotlin-coroutines
Here are 474 public repositories matching this topic...
-
Updated
Jun 6, 2020 - Kotlin
-
Updated
Jun 5, 2020 - Kotlin
-
Updated
Jun 6, 2020 - Java
Hello,
you did the hard part of documenting which is writing the content.
I recommend as a next step to put all those markdown files in a website Gradle module powered by Orchid
See https://github.com/JavaEden/Orchid
I use it for my own needs and find it good, less well known that Hugo, Jekyll, Gatsby, but it fits right in with our skills: Gradle, Kotlin.
The way to get started is
-
Updated
Jun 6, 2018 - Kotlin
-
Updated
Jun 5, 2020 - Kotlin
Hi,
great extension to libGDX :) thank you for that.
My question: how can square brackets be used with libKTX ArrayMaps?
what I wanted to to:
val myMap : ArrayMap<String, Label>
myMap = ArrayMap()
myMap["one"] = new Label(...)But there is no Set operator defined. Am I doing something wrong, or isn't it just implemented yet?
Cheers
-
Updated
Dec 13, 2019 - Kotlin
-
Updated
Apr 20, 2020 - Kotlin
Rename file to match the class name + offer a operator fun invoke to not need to use ProxySwizzle
API Documentation
-
Updated
Jun 3, 2020 - Kotlin
-
Updated
Feb 4, 2020 - Kotlin
-
Updated
May 31, 2020 - Kotlin
The Eddystone-URL Configuration Service used by the Beacon I got at Google I/O Extended 2016 could be used as a more complex example of how this library can be used.
-
Updated
May 3, 2020 - Kotlin
-
Updated
Apr 2, 2020 - Kotlin
-
Updated
Jul 23, 2019 - Kotlin
-
Updated
May 14, 2020 - Kotlin
-
Updated
May 30, 2020 - Kotlin
-
Updated
Apr 25, 2020 - Kotlin
I have a shared viewmodel that I'd like to share in all of my vector fragments. I've tried injecting it like shown in the documentation but I get the error saying that the VectorViewModelFactory needs to be created to get an instance of the ViewModel. Help would be much appreciated.
-
Updated
May 24, 2020 - Kotlin
-
Updated
Jul 8, 2019 - Kotlin
-
Updated
Apr 27, 2019 - Kotlin
-
Updated
Jan 15, 2019 - Kotlin
-
Updated
Jul 26, 2019 - Kotlin
-
Updated
May 13, 2020 - Kotlin
Suggested change: Add a link in the About page to a credits section. This section can attribute usage of the SpaceX API and licenses of various open source libraries used.
When an API exception is happening the exception should be caught in catch block is it?
`
fun invoke(
scope: CoroutineScope,
params: Params?,
onResult: (UseCaseResponse)
) {
val backgroundJob = scope.async {
run(params)
}
scope.launch {
backgroundJob.await().let {
try {
Improve this page
Add a description, image, and links to the kotlin-coroutines topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the kotlin-coroutines topic, visit your repo's landing page and select "manage topics."


You should probably mention that the library also does a Rotate on the image during the rescale process.
The library also catches any exception possible (OOM, ...) it makes it quite hard to debug when using it.