Package org.apache.uima.tools.cpm
Class CpmPanel.StatusCallbackListenerImpl
- java.lang.Object
-
- org.apache.uima.tools.cpm.CpmPanel.StatusCallbackListenerImpl
-
- All Implemented Interfaces:
BaseStatusCallbackListener,StatusCallbackListener
- Enclosing class:
- CpmPanel
class CpmPanel.StatusCallbackListenerImpl extends java.lang.Object implements StatusCallbackListener
The Class StatusCallbackListenerImpl.
-
-
Constructor Summary
Constructors Constructor Description StatusCallbackListenerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaborted()Called when the processing has been aborted.voidbatchProcessComplete()Called when the processing of a batch has completed.voidcollectionProcessComplete()Called when the processing of an entire collection has completed.voidentityProcessComplete(CAS aCas, EntityProcessStatus aStatus)Called when the processing of each entity has completed.voidinitializationComplete()Called when the Collection Processing Manager's initialization has completed.voidpaused()Called when the processing has been paused.voidresumed()Called when the processing has been resumed (after it had been previously paused).
-
-
-
Method Detail
-
initializationComplete
public void initializationComplete()
Description copied from interface:BaseStatusCallbackListenerCalled when the Collection Processing Manager's initialization has completed.- Specified by:
initializationCompletein interfaceBaseStatusCallbackListener
-
entityProcessComplete
public void entityProcessComplete(CAS aCas, EntityProcessStatus aStatus)
Description copied from interface:StatusCallbackListenerCalled when the processing of each entity has completed.- Specified by:
entityProcessCompletein interfaceStatusCallbackListener- Parameters:
aCas- the CAS containing the processed entity and the analysis resultsaStatus- the status of the processing. This object contains a record of any Exception that occurred, as well as timing information.
-
batchProcessComplete
public void batchProcessComplete()
Description copied from interface:BaseStatusCallbackListenerCalled when the processing of a batch has completed.- Specified by:
batchProcessCompletein interfaceBaseStatusCallbackListener
-
collectionProcessComplete
public void collectionProcessComplete()
Description copied from interface:BaseStatusCallbackListenerCalled when the processing of an entire collection has completed.- Specified by:
collectionProcessCompletein interfaceBaseStatusCallbackListener
-
paused
public void paused()
Description copied from interface:BaseStatusCallbackListenerCalled when the processing has been paused.- Specified by:
pausedin interfaceBaseStatusCallbackListener
-
resumed
public void resumed()
Description copied from interface:BaseStatusCallbackListenerCalled when the processing has been resumed (after it had been previously paused).- Specified by:
resumedin interfaceBaseStatusCallbackListener
-
aborted
public void aborted()
Description copied from interface:BaseStatusCallbackListenerCalled when the processing has been aborted.- Specified by:
abortedin interfaceBaseStatusCallbackListener
-
-