├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main └── kotlin └── org └── koitharu └── pausingcoroutinedispatcher ├── NonPausing.kt ├── PausingCoroutineDispatcher.kt ├── PausingDeferred.kt ├── PausingDispatcher.kt ├── PausingHandle.kt ├── PausingJob.kt └── internal ├── PausingDispatchQueue.kt └── PausingDispatcherImpl.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/NonPausing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/NonPausing.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingCoroutineDispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingCoroutineDispatcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingDeferred.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingDeferred.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingDispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingDispatcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingHandle.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/PausingJob.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/internal/PausingDispatchQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/internal/PausingDispatchQueue.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/internal/PausingDispatcherImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koitharu/pausing-coroutine-dispatcher/HEAD/src/main/kotlin/org/koitharu/pausingcoroutinedispatcher/internal/PausingDispatcherImpl.kt --------------------------------------------------------------------------------