Package org.apache.uima.analysis_engine
Interface AnalysisEngineServiceStub
-
- All Superinterfaces:
ResourceServiceStub
- All Known Implementing Classes:
VinciAnalysisEngineServiceStub
,VinciBinaryAnalysisEngineServiceStub
public interface AnalysisEngineServiceStub extends ResourceServiceStub
A stub that calls a remote AnalysisEngine service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
callBatchProcessComplete()
Performs service call to inform the AnalysisEngine that the processing of a batch has been completed.void
callCollectionProcessComplete()
Performs service call to inform the AnalysisEngine that the processing of a collection has been completed.void
callProcess(CAS aCAS)
Performs service call to process an entity.-
Methods inherited from interface org.apache.uima.resource.ResourceServiceStub
callGetMetaData, destroy
-
-
-
-
Method Detail
-
callProcess
void callProcess(CAS aCAS) throws ResourceServiceException
Performs service call to process an entity.- Parameters:
aCAS
- the CAS to process- Throws:
ResourceServiceException
- tbd
-
callBatchProcessComplete
void callBatchProcessComplete() throws ResourceServiceException
Performs service call to inform the AnalysisEngine that the processing of a batch has been completed.- Throws:
ResourceServiceException
- tbd
-
callCollectionProcessComplete
void callCollectionProcessComplete() throws ResourceServiceException
Performs service call to inform the AnalysisEngine that the processing of a collection has been completed.- Throws:
ResourceServiceException
- tbd
-
-