17 lines
432 B
Kotlin
Vendored
17 lines
432 B
Kotlin
Vendored
import kotlin.concurrent.fixedRateTimer
|
|
import kotlin.concurrent.read
|
|
import kotlin.concurrent.withLock
|
|
import kotlin.concurrent.write
|
|
import java.util.ArrayList
|
|
import java.util.concurrent.locks.Lock
|
|
|
|
/**
|
|
* Reference to [ArrayList]
|
|
* Reference to [fixedRateTimer]
|
|
* Reference to [kotlin.concurrent.read]
|
|
* Reference to [Lock.withLock]
|
|
* Reference to [java.util.concurrent.locks.ReentrantReadWriteLock.write]
|
|
*/
|
|
fun foo() {
|
|
}
|