Is there multiplatform lock in Kotlin?

4ntoine :

What multiplatform Lock or synchronization approach should be used in multiplatform Kotlin code? Previously in Java code i used synchronized and i can see synchronized in Kotlin too. However it's marked as Deprecated and will be removed from common std lib soon.

I can see withLock, but it's supported on JVM only, not multiplatform.

Any thoughts?

PS. For now we don't want to migrate to Kotlin coroutines because of too much rewrite and coroutines library footprint (too large for Android library with strict disk footprint requirements).

TheOperator :

From Kotlin/Native Concurrent documentation (here):

Concurrency in Kotlin/Native

Kotlin/Native runtime doesn't encourage a classical thread-oriented concurrency model with mutually exclusive code blocks and conditional variables, as this model is known to be error-prone and unreliable. Instead, we suggest a collection of alternative approaches, allowing you to use hardware concurrency and implement blocking IO. Those approaches are as follows, and they will be elaborated on in further sections:

  • Workers with message passing
  • Object subgraph ownership transfer
  • Object subgraph freezing
  • Object subgraph detachment
  • Raw shared memory using C globals
  • Coroutines for blocking operations (not covered in this document)

It seems that locks are not exposed in Kotlin/Native by design. There are implementations (see Lock.kt), however that class is marked internal.

However, there is a multi-platform implemenation of locks in KTOR (very limited doc, source code). It is public, but marked with @InternalApi, which may affect its stability.

You might also be interested in this KotlinLang discussion thread: Replacement for synchronized

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=121170&siteId=1