Package org.apache.uima.fit.component
Class CasFlowController_ImplBase
java.lang.Object
org.apache.uima.flow.FlowController_ImplBase
org.apache.uima.flow.CasFlowController_ImplBase
org.apache.uima.fit.component.CasFlowController_ImplBase
- All Implemented Interfaces:
FlowController
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
initialize
(FlowControllerContext context) Performs any startup tasks required by this component.Methods inherited from class org.apache.uima.flow.CasFlowController_ImplBase
computeFlow, computeFlow, getRequiredCasInterface, typeSystemInit
Methods inherited from class org.apache.uima.flow.FlowController_ImplBase
addAnalysisEngines, batchProcessComplete, collectionProcessComplete, destroy, getContext, getLogger, reconfigure, removeAnalysisEngines
-
Constructor Details
-
CasFlowController_ImplBase
public CasFlowController_ImplBase()
-
-
Method Details
-
initialize
Description copied from interface:FlowController
Performs any startup tasks required by this component. The framework calls this method only once, just after the FlowController has been instantiated.The framework supplies this FlowController with a reference to the
FlowControllerContext
that it will use, for example to access configuration settings or resources. This FlowController should store a reference to this Context for later use.- Specified by:
initialize
in interfaceFlowController
- Overrides:
initialize
in classFlowController_ImplBase
- Parameters:
context
- Provides access to services and resources managed by the framework. This includes configuration parameters, logging, and access to external resources. Also provides the FlowController with the metadata of all of the AnalysisEngines that are possible targets for routing CASes.- Throws:
ResourceInitializationException
- if the FlowController cannot initialize successfully.
-