Interface Exporter
-
- All Known Implementing Classes:
GafferResultCacheExporter
,LocalFileExporter
,OtherGraphExporter
,SetExporter
public interface Exporter
AnExporter
can store data of any kind and retrieve it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(String key, Iterable<?> results)
Iterable<?>
get(String key)
-
-
-
Method Detail
-
add
void add(String key, Iterable<?> results) throws OperationException
- Throws:
OperationException
-
get
Iterable<?> get(String key) throws OperationException
- Throws:
OperationException
-
-