Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        @Override
        public Lock readLock() {
          return new WeakSafeLock(delegate.readLock(), this);
        }
    
        @Override
        public Lock writeLock() {
          return new WeakSafeLock(delegate.writeLock(), this);
        }
      }
    
      /** Lock object that ensures a strong reference is retained to a specified object. */
      private static final class WeakSafeLock extends ForwardingLock {
        private final Lock delegate;
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 16 22:01:32 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top