All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.common.base.ExpiringMemoizingSupplierUtil Maven / Gradle / Ivy

Go to download

Guava cache supplier extension to memoize exceptions, fallback, expiration control.

The newest version!
package com.google.common.base;

public class ExpiringMemoizingSupplierUtil {

  /** Force a ExpiringMemoizingSupplier to expire now. */
  public static void expire(Supplier supplier) {
    ((Suppliers.ExpiringMemoizingSupplier) supplier).expirationNanos = 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy