Package com.funnelback.plugin.gatherer
Interface PluginGatherer
-
public interface PluginGatherer
A plugin may implement this if the plugin is to support gathering of documents. The plugin will only be called on custom collections.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
gather(PluginGatherContext pluginGatherContext, PluginStore store)
default void
gather(PluginGatherContext pluginGatherContext, PluginStore store, FileScanner fileScanner)
-
-
-
Method Detail
-
gather
void gather(PluginGatherContext pluginGatherContext, PluginStore store) throws Exception
- Parameters:
pluginGatherContext
- Provides access to collection config settings.store
- Used by the plugin to store the documents into.- Throws:
Exception
-
gather
default void gather(PluginGatherContext pluginGatherContext, PluginStore store, FileScanner fileScanner) throws Exception
- Throws:
Exception
-
-