Detailed Description
Abstract base class for caches that use FlowData as the key.
Internally, the cache actually uses a DataKey instance derived from FlowData.
- See also
- Specification
- Parameters
-
- <V> - the type of data to store in the cache
|
Inheritance diagram for fiftyone.pipeline.engines.caching.DataKeyedCacheBase< V >:
Collaboration diagram for fiftyone.pipeline.engines.caching.DataKeyedCacheBase< V >:
Public Member Functions
void
| put (FlowData flowData, V value)
|
void
| close () throws IOException
|
|
void
| put (K key, V value)
|
|
V
| get (K key)
Retrieves the value for key requested. More...
|