com.openhtmltopdf.extend.FSCacheEx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
The newest version!
package com.openhtmltopdf.extend;
import java.util.concurrent.Callable;
public interface FSCacheEx {
public void put(K key, V value);
public V get(K key, Callable extends V> loader);
public V get(K key);
}