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