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 FSNoOpCacheStore
INSTANCE
-
Constructor Summary
Constructors Constructor Description FSNoOpCacheStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FSCacheValue
get(java.lang.String key)
FSCacheValue
get(java.lang.String key, java.util.concurrent.Callable<? extends FSCacheValue> loader)
void
put(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:
put
in interfaceFSCacheEx<java.lang.String,FSCacheValue>
-
get
public FSCacheValue get(java.lang.String key, java.util.concurrent.Callable<? extends FSCacheValue> loader)
- Specified by:
get
in interfaceFSCacheEx<java.lang.String,FSCacheValue>
-
get
public FSCacheValue get(java.lang.String key)
- Specified by:
get
in interfaceFSCacheEx<java.lang.String,FSCacheValue>
-
-