WorkerBoundReference

Native
1.3
class WorkerBoundReference<out T : Any>
(source)

A shared reference to a Kotlin object that doesn't freeze the referred object when it gets frozen itself.

After freezing can be safely passed between workers, but value can only be accessed on the worker WorkerBoundReference was created on, unless the referred object is frozen too.

Note: Garbage collector currently cannot free any reference cycles with frozen WorkerBoundReference in them. To resolve such cycles consider using AtomicReference<WorkerBoundReference?> which can be explicitly nulled out.

Constructors

Native
1.3

<init>

A shared reference to a Kotlin object that doesn't freeze the referred object when it gets frozen itself.

WorkerBoundReference(value: T)

Properties

Native
1.3

value

The referenced value.

val value: T
Native
1.3

valueOrNull

The referenced value or null if referred object is not frozen and current worker is different from the one created this.

val valueOrNull: T?
Native
1.3

worker

Worker that value is bound to.

val worker: Worker