13 lines
315 B
Kotlin
13 lines
315 B
Kotlin
package net.sergeych.synctools
|
|
|
|
@Suppress("EXPECT_ACTUAL_CLASSIFIERS_ARE_IN_BETA_WARNING")
|
|
actual class WaitHandle {
|
|
actual fun await(milliseconds: Long): Boolean {
|
|
// in JS we can't wait: no threads
|
|
return true
|
|
}
|
|
|
|
actual fun wakeUp() {
|
|
// in JS we can't wait: no threads
|
|
}
|
|
} |