├── .gitignore ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── nativeMain └── kotlin └── sample ├── Background.kt ├── BackgroundSupport.kt ├── Debugging.kt ├── FrozenState.kt ├── GlobalState.kt ├── SampleMain.kt └── SimpleState.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'KNConcurrencySamples' 2 | -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/Background.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/Background.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/BackgroundSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/BackgroundSupport.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/Debugging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/Debugging.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/FrozenState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/FrozenState.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/GlobalState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/GlobalState.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/SampleMain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/SampleMain.kt -------------------------------------------------------------------------------- /src/nativeMain/kotlin/sample/SimpleState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotlin-hands-on/KNConcurrencyHandson/HEAD/src/nativeMain/kotlin/sample/SimpleState.kt --------------------------------------------------------------------------------