SharedImmutable

@Target(allowedTargets = [AnnotationTarget.PROPERTY])
expect annotation class SharedImmutable(source)

Marks a top level property with a backing field as immutable. It is possible to share the value of such property between multiple threads, but it becomes deeply frozen, so no changes can be made to its state or the state of objects it refers to.

The annotation has effect only in Kotlin/Native platform.

PLEASE NOTE THAT THIS ANNOTATION MAY GO AWAY IN UPCOMING RELEASES.

@Target(allowedTargets = [AnnotationTarget.PROPERTY])
actual annotation class SharedImmutable

Marks a top level property with a backing field as immutable. It is possible to share the value of such property between multiple threads, but it becomes deeply frozen, so no changes can be made to its state or the state of objects it refers to.

The annotation has effect only in Kotlin/Native platform.

PLEASE NOTE THAT THIS ANNOTATION MAY GO AWAY IN UPCOMING RELEASES.

Constructors

Link copied to clipboard
expect fun SharedImmutable()
actual fun SharedImmutable()