Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for waiterCount (0.06 sec)

  1. guava/src/com/google/common/util/concurrent/Monitor.java

       *
       * @since 10.0
       */
      public abstract static class Guard {
    
        @Weak final Monitor monitor;
        final Condition condition;
    
        @GuardedBy("monitor.lock")
        int waiterCount = 0;
    
        /** The next active guard */
        @GuardedBy("monitor.lock")
        @Nullable Guard next;
    
        protected Guard(Monitor monitor) {
          this.monitor = checkNotNull(monitor, "monitor");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
Back to top