public interface ICache
Defines methods required for storing rendered document and document resources cache.
Modifier and Type | Method and Description |
---|---|
com.aspose.ms.System.Collections.Generic.IGenericEnumerable<String> |
getKeys(String filter)
Returns all keys matching filter.
|
void |
set(String key,
Object value)
Inserts a cache entry into the cache.
|
boolean |
tryGetValue(String key,
Object value)
Gets the entry associated with this key if present.
|
com.aspose.ms.System.Collections.Generic.IGenericEnumerable<String> getKeys(String filter)
Returns all keys matching filter.
filter
- The filter to use.void set(String key, Object value)
Inserts a cache entry into the cache.
key
- A unique identifier for the cache entry.value
- The object to insert.