Uses of Interface
org.apache.uima.collection.base_cpm.CasProcessor
Package
Description
The Analysis Engine interface, along with supporting interfaces and exception classes.
Classes and interfaces for collection processing.
-
Uses of CasProcessor in org.apache.uima.adapter.vinci
Modifier and TypeClassDescriptionclass
Reference implementation ofAnalysisEngineServiceAdapter
for Vinci. -
Uses of CasProcessor in org.apache.uima.analysis_component
-
Uses of CasProcessor in org.apache.uima.analysis_engine
Modifier and TypeInterfaceDescriptioninterface
An Analysis Engine is a component responsible for analyzing unstructured information, discovering and representing semantic content.interface
Deprecated. -
Uses of CasProcessor in org.apache.uima.analysis_engine.impl
Modifier and TypeClassDescriptionclass
Reference implementation ofAnalysisEngine
.class
Provides functionality common to Analysis Engine implementations.class
Base class for analysis engine processor adapters.class
AnAnalysisEngine
implementation that can process multipleCAS
objects simultaneously.class
UIMA pear runtime analysis engine wrapper.class
Reference implementation ofAnalysisEngine
.class
Reference implementation ofAnalysisEngine
. -
Uses of CasProcessor in org.apache.uima.analysis_engine.service.impl
Modifier and TypeClassDescriptionclass
Base class for analysis engine service adapters. -
Uses of CasProcessor in org.apache.uima.collection
Modifier and TypeInterfaceDescriptioninterface
Any component that operates on analysis results produced by a UIMA analysis engine.Modifier and TypeClassDescriptionclass
Base class for CAS Consumers in UIMA SDK v1.x, which developers should extend with their own CAS Consumer implementation classes.Modifier and TypeMethodDescriptionCollectionProcessingEngine.getCasProcessors()
Gets theCasProcessors
s in this CPE, in the order in which they will be executed. -
Uses of CasProcessor in org.apache.uima.collection.base_cpm
Modifier and TypeInterfaceDescriptioninterface
Any component that operates on analysis results produced by a UIMA CasDataProcessor.interface
Interface for CAS processors that want to interact directly with theCasData
.interface
Interface for CAS Processors that want to use the fullCAS
implementation.Modifier and TypeClassDescriptionclass
Base class from which to extend when writing CAS Consumers that use theCasData
interface to access the CAS.Modifier and TypeMethodDescriptionBaseCPM.getCasProcessors()
Gets theCasProcessors
s assigned to this CPM, in the order in which they will be called by the CPM.Modifier and TypeMethodDescriptionvoid
BaseCPM.addCasProcessor
(CasProcessor aCasProcessor) Adds aCasProcessor
to this CPM's list of consumers.void
BaseCPM.addCasProcessor
(CasProcessor aCasProcessor, int aIndex) Adds aCasProcessor
to this CPM's list of consumers.void
BaseCPM.removeCasProcessor
(CasProcessor aCasProcessor) Removes aCasProcessor
to this CPM's list of consumers. -
Uses of CasProcessor in org.apache.uima.collection.impl
-
Uses of CasProcessor in org.apache.uima.collection.impl.base_cpm.container
Modifier and TypeMethodDescriptionCasProcessorController.getCasProcessor()
Returns instance of CasProcessorModifier and TypeMethodDescriptionabstract boolean
ProcessingContainer.isEndOfBatch
(CasProcessor aCasProcessor, int aProcessedSize) abstract void
ProcessingContainer.releaseCasProcessor
(CasProcessor aCasProcessor) -
Uses of CasProcessor in org.apache.uima.collection.impl.base_cpm.container.deployer
Modifier and TypeMethodDescriptionCPEDeployer.deployCasProcessor
(ProcessingContainer aProcessingContainer, CasProcessor aCasProcessor, boolean redeploy) -
Uses of CasProcessor in org.apache.uima.collection.impl.cpm
Modifier and TypeMethodDescriptionvoid
BaseCPMImpl.addCasProcessor
(CasProcessor aCasProcessor) void
BaseCPMImpl.addCasProcessor
(CasProcessor aCasProcessor, int aIndex) void
BaseCPMImpl.removeCasProcessor
(CasProcessor aCasProcessor) -
Uses of CasProcessor in org.apache.uima.collection.impl.cpm.container
Modifier and TypeClassDescriptionclass
Implementation of theCasObjectProcessor
interface used for both Local and Remote CasObjectProcessors.class
Implementation of theCasDataProcessor
interface used for both Local and Remote CasDataProcessors.Modifier and TypeMethodDescriptionServiceProxyPool.checkOut()
Checks out a Resource from the pool.ServiceProxyPool.checkOut
(long aTimeout) Checks out a Resource from the pool.ProcessingContainer_Impl.getCasProcessor()
Returns available instance of the CasProcessor from the instance pool.CPEFactory.getCasProcessors()
Returns an array of Cas Processors instantiated from the cpe descriptor.CPEFactory.produceCasDataConsumer
(Class aResourceClass, ResourceSpecifier aSpecifier, Map aAdditionalParams) Instantiates CasData Consumer from a given class.Modifier and TypeMethodDescriptionvoid
CPEFactory.addCasProcessor
(CasProcessor aCasProcessor) Appends given Cas Processor to the list of CasProcessors.void
ServiceProxyPool.addCasProcessor
(CasProcessor aCasProcessor) void
ServiceProxyPool.checkIn
(CasProcessor aResource) Checks in a Resource to the pool.boolean
ProcessingContainer_Impl.isEndOfBatch
(CasProcessor aCasProcessor, int aProcessedSize) void
ProcessingContainer_Impl.releaseCasProcessor
(CasProcessor aCasProcessor) Returns a given casProcessor instance back to the pool. -
Uses of CasProcessor in org.apache.uima.collection.impl.cpm.engine
Modifier and TypeMethodDescriptionCPMEngine.getCasProcessors()
Returns all CASProcesors in the processing pipeline.Modifier and TypeMethodDescriptionvoid
CPMEngine.addCasProcessor
(CasProcessor aCasProcessor) Adds a CASProcessor to the processing pipeline.void
CPMEngine.addCasProcessor
(CasProcessor aCasProcessor, int aIndex) Adds a CASProcessor to the processing pipeline at a given place in the processing pipeline.boolean
CPMEngine.isParallizable
(CasProcessor aProcessor, String aCpName) Determines if a given Cas Processor is parallelizable. -
Uses of CasProcessor in org.apache.uima.test.junit_extension
Modifier and TypeClassDescriptionclass
Deprecated.To be removed without replacement. -
Uses of CasProcessor in org.apache.uima.tools.components
Modifier and TypeClassDescriptionclass
A simple CAS consumer that generates inline XML and writes it to a file.class
A simple CAS consumer that generates XCAS (XML representation of the CAS) files in the filesystem.class
A simple CAS consumer that writes the CAS to XMI format.
AnalysisEngine
should be used instead.