Stately icon indicating copy to clipboard operation
Stately copied to clipboard

Kotlin Multiplatform State Library

Results 17 Stately issues
Sort by recently updated
recently updated
newest added

Using the nmm PR https://github.com/touchlab/Stately/pull/82 Create a test application that creates concurrent collections (ConcurrentMutableList, etc) and access them from multiple threads. Should be in a sample dir in the repo....

Apparently, on maven the version 1.2.3 was released, i.e here: https://mvnrepository.com/artifact/co.touchlab/stately-common-iosx64 But there is is tag and no release notes for this versions. It would be great if you could...

Update for Kotlin 1.7.20 and new memory model

Hi devs, we saw many of these warnings for this library when building to iOS simulators. We saw similar warnings on other libraries too (e.g. AAkira/Napier when we are on...

Hey folks, would you be interested in letting `AtomicReference` be accessed using a delegate? It'll simplify usage by a bit by avoiding the additional `get`/`set` calls. I can send a...

We have a bit of fairly complicated logic in our project that uses an `IsoMutableMap` whose value is another `IsoMutableMap`, something like ```kotlin val nested = IsoMutableMap() ``` As part...

Here's what I believe is happening: - Kotlin code is accessed on main thread for the first time, triggering runtime initialization - Runtime initialization initializes globals, among these is [`defaultStateRunner`](https://github.com/touchlab/Stately/blob/44cb17cea1d2fd5f7a5c1793c13fa097a510566a/stately-isolate/src/commonMain/kotlin/co/touchlab/stately/isolate/IsoState.kt#L45)...

Some code that will hopefully check if we're in the new memory model: https://github.com/touchlab/Stately/tree/kpg/new_memory_model Add config to get this to run on the new memory model and confirm this works:...