Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for notifyNewValue (0.38 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        /**
         * Notify pending loads that a new value was set. This is only relevant to loading value
         * references.
         */
        void notifyNewValue(@CheckForNull V newValue);
    
        /**
         * Returns true if a new value is currently loading, regardless of whether there is an existing
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        /**
         * Notify pending loads that a new value was set. This is only relevant to loading value
         * references.
         */
        void notifyNewValue(@CheckForNull V newValue);
    
        /**
         * Returns true if a new value is currently loading, regardless of whether there is an existing
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        @Override
        public boolean isActive() {
          return !loading;
        }
    
        @Override
        public V waitForValue() {
          return get();
        }
    
        @Override
        public void notifyNewValue(V newValue) {}
    
        public void clear() {
          value = null;
        }
      }
    
      private static class SerializableCacheLoader extends CacheLoader<Object, Object>
          implements Serializable {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        @Override
        public boolean isActive() {
          return !loading;
        }
    
        @Override
        public V waitForValue() {
          return get();
        }
    
        @Override
        public void notifyNewValue(V newValue) {}
    
        public void clear() {
          value = null;
        }
      }
    
      private static class SerializableCacheLoader extends CacheLoader<Object, Object>
          implements Serializable {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
Back to top