allJvmMain.org.kodein.db.impl.utils.LockJvm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kodein-db Show documentation
Show all versions of kodein-db Show documentation
Kodein-DB implementation library
The newest version!
package org.kodein.db.impl.utils
public actual typealias Lock = java.util.concurrent.locks.Lock
internal actual fun newLock(): Lock = java.util.concurrent.locks.ReentrantLock()
public actual typealias RWLock = java.util.concurrent.locks.ReadWriteLock
internal actual fun newRWLock(): RWLock = java.util.concurrent.locks.ReentrantReadWriteLock()