Interface Condition

    • Method Detail

      • isSignalled

        boolean isSignalled()
        Returns true once signalled. Unidirectional; once true, will never again be false.
      • signal

        void signal()
        Signal the condition as met, and wake all waiting threads.
      • signalAll

        default void signalAll()
        Signal the condition as met, and wake all waiting threads.
      • newOneTimeCondition

        static Condition newOneTimeCondition()
        Factory method used to capture and redirect instantiations for simulation