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

g1101_1200.s1114_print_in_order.Foo Maven / Gradle / Ivy

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

// #Easy #Concurrency #2023_06_01_Time_12_ms_(58.10%)_Space_41.7_MB_(65.01%)

public class Foo {
    private volatile boolean firstFinished;
    private volatile boolean secondFinished;

    public void first(Runnable printFirst) {
        // printFirst.run() outputs "first". Do not change or remove this line.
        printFirst.run();
        firstFinished = true;
    }

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

    public void third(Runnable printThird) {
        // 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