All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1101_1200.s1114_print_in_order.Foo.kt Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package g1101_1200.s1114_print_in_order

// #Easy #Concurrency #2023_05_31_Time_13_ms_(30.13%)_Space_42_MB_(17.32%)

class Foo {
    @Volatile
    private var firstFinished = false

    @Volatile
    private var secondFinished = false
    fun first(printFirst: Runnable) {
        // printFirst.run() outputs "first". Do not change or remove this line.
        printFirst.run()
        firstFinished = true
    }

    fun second(printSecond: Runnable) {
        // printSecond.run() outputs "second". Do not change or remove this line.
        while (true) {
            if (firstFinished) {
                printSecond.run()
                secondFinished = true
                break
            }
        }
    }

    fun third(printThird: Runnable) {
        // printThird.run() outputs "third". Do not change or remove this line.
        while (true) {
            if (firstFinished && secondFinished) {
                printThird.run()
                break
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy