Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getAsBoolean (0.04 sec)

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

      public Guard newGuard(BooleanSupplier isSatisfied) {
        checkNotNull(isSatisfied, "isSatisfied");
        return new Guard(this) {
          @Override
          public boolean isSatisfied() {
            return isSatisfied.getAsBoolean();
          }
        };
      }
    
      /** Enters this monitor. Blocks indefinitely. */
      public void enter() {
        lock.lock();
      }
    
      /**
       * Enters this monitor. Blocks at most the given time.
    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