Package com.openhtmltopdf.extend.impl
Class FSNoOpCacheStore
- java.lang.Object
-
- com.openhtmltopdf.extend.impl.FSNoOpCacheStore
-
- All Implemented Interfaces:
FSCacheEx<String,FSCacheValue>
public class FSNoOpCacheStore extends Object implements FSCacheEx<String,FSCacheValue>
-
-
Field Summary
Fields Modifier and Type Field Description static FSNoOpCacheStoreINSTANCE
-
Constructor Summary
Constructors Constructor Description FSNoOpCacheStore()
-
Method Summary
Modifier and Type Method Description FSCacheValueget(String key)FSCacheValueget(String key, Callable<? extends FSCacheValue> loader)voidput(String key, FSCacheValue value)
-
-
-
Field Detail
-
INSTANCE
public static final FSNoOpCacheStore INSTANCE
-
-
Method Detail
-
put
public void put(String key, FSCacheValue value)
- Specified by:
putin interfaceFSCacheEx<String,FSCacheValue>
-
get
public FSCacheValue get(String key, Callable<? extends FSCacheValue> loader)
- Specified by:
getin interfaceFSCacheEx<String,FSCacheValue>
-
get
public FSCacheValue get(String key)
- Specified by:
getin interfaceFSCacheEx<String,FSCacheValue>
-
-