synchronized

expect inline fun <R> synchronized(lock: Any, block: () -> R): R(source)

Deprecated (with error)

Synchronization on any object is not supported on every platform and will be removed from the common standard library soon.

actual inline fun <R> synchronized(lock: Any, block: () -> R): R(source)

Executes the given function block while holding the monitor of the given object lock.

actual inline fun <R> synchronized(lock: Any, block: () -> R): R