Class FlowControllerContainer
java.lang.Object
org.apache.uima.resource.Resource_ImplBase
org.apache.uima.resource.ConfigurableResource_ImplBase
org.apache.uima.analysis_engine.asb.impl.FlowControllerContainer
- All Implemented Interfaces:
ConfigurableResource
,Resource
Container for a FlowController. Manages configuration parameters, resources, CAS interface
conversions, and performance timing.
-
Field Summary
Fields inherited from interface org.apache.uima.resource.Resource
PARAM_AGGREGATE_SOFA_MAPPINGS, PARAM_CONFIG_MANAGER, PARAM_CONFIG_PARAM_SETTINGS, PARAM_EXTERNAL_OVERRIDE_SETTINGS, PARAM_PERFORMANCE_TUNING_SETTINGS, PARAM_RESOURCE_MANAGER, PARAM_UIMA_CONTEXT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addAnalysisEngines
(Collection<String> aKeys) Notifies this FlowController that new Analysis Enginesvoid
computeFlow
(CAS aCAS) Invokes the FlowController's computeFlow method, returning a Flow object that routes the given CAS through this aggregate.void
destroy()
Releases all resources held by thisResource
.protected void
finalize()
getMBean()
Class<? extends AbstractCas>
boolean
initialize
(ResourceSpecifier aSpecifier, Map<String, Object> aAdditionalParams) Initializes thisResource
from aResourceSpecifier
.void
Instructs this Resource to re-read its configuration parameter settings.void
removeAnalysisEngines
(Collection<String> aKeys) Notifies this FlowController that some Analysis Engines are no longer available to route CASes to.Methods inherited from class org.apache.uima.resource.ConfigurableResource_ImplBase
getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
Methods inherited from class org.apache.uima.resource.Resource_ImplBase
getCasManager, getLogger, getMetaData, getRelativePathResolver, getResourceManager, getUimaContext, getUimaContextAdmin, loadUserClass, loadUserClassOrThrow, setContextHolder, setContextHolderX, setLogger, setMetaData, withContextHolder
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.uima.resource.Resource
getLogger, getMetaData, getResourceManager, getUimaContext, getUimaContextAdmin, setLogger
-
Constructor Details
-
FlowControllerContainer
public FlowControllerContainer()
-
-
Method Details
-
initialize
public boolean initialize(ResourceSpecifier aSpecifier, Map<String, Object> aAdditionalParams) throws ResourceInitializationExceptionDescription copied from interface:Resource
Initializes thisResource
from aResourceSpecifier
. Applications do not need to call this method. It is called automatically by theResourceFactory
and cannot be called a second time.- Specified by:
initialize
in interfaceResource
- Overrides:
initialize
in classResource_ImplBase
- Parameters:
aSpecifier
- specifies how to create a resource or locate an existing resource service.aAdditionalParams
- a Map containing additional parameters. May benull
if there are no parameters. Each class that implements this interface can decide what additional parameters it supports.- Returns:
- true if and only if initialization completed successfully. Returns false if the given
ResourceSpecifier
is not of an appropriate type for this Resource. If theResourceSpecifier
is of an appropriate type but is invalid or if some other failure occurs, an exception should be thrown. - Throws:
ResourceInitializationException
- if a failure occurs during initialization.- See Also:
-
finalize
-
reconfigure
Description copied from interface:ConfigurableResource
Instructs this Resource to re-read its configuration parameter settings.- Specified by:
reconfigure
in interfaceConfigurableResource
- Overrides:
reconfigure
in classConfigurableResource_ImplBase
- Throws:
ResourceConfigurationException
- if the configuration is not valid- See Also:
-
destroy
public void destroy()Description copied from interface:Resource
Releases all resources held by thisResource
.- Specified by:
destroy
in interfaceResource
- Overrides:
destroy
in classResource_ImplBase
- See Also:
-
computeFlow
Invokes the FlowController's computeFlow method, returning a Flow object that routes the given CAS through this aggregate. This method makes sure to provide the FlowController with its required CAS interface (e.g. JCas).- Parameters:
aCAS
- the CAS to pass to the FlowController- Returns:
- a Flow object that routes this CAS
- Throws:
AnalysisEngineProcessException
- if the FlowController failed
-
getRequiredCasInterface
- Returns:
- the required CAS interface of the FlowController
-
getProcessingResourceMetaData
-
getMBean
- Returns:
- the MBean to use to report performance statistics.
-
addAnalysisEngines
Notifies this FlowController that new Analysis Engines- Parameters:
aKeys
- the keys for the delegates- See Also:
-
removeAnalysisEngines
Notifies this FlowController that some Analysis Engines are no longer available to route CASes to.- Parameters:
aKeys
- the keys of the delegates to be removed- Throws:
AnalysisEngineProcessException
- -- See Also:
-
collectionProcessComplete
- Throws:
AnalysisEngineProcessException
-