W3cubDocs

/Kotlin

Extensions for java.util.concurrent.locks.ReentrantReadWriteLock

read

fun <T> ReentrantReadWriteLock.read(action: () -> T): T

Executes the given action under the read lock of this lock.

write

fun <T> ReentrantReadWriteLock.write(action: () -> T): T

Executes the given action under the write lock of this lock.