Interface BaseStatusCallbackListener
-
- All Known Subinterfaces:
CasDataStatusCallbackListener,StatusCallbackListener
- All Known Implementing Classes:
CpmPanel.StatusCallbackListenerImpl,DocumentAnalyzer,RunAE,StatusCallbackListenerImpl
public interface BaseStatusCallbackListenerInterface for a Listener that receives notification from theBaseCPMas various events occur. Listeners will not generally implement this interface directly. Instead they will implementStatusCallbackListenerorCasDataStatusCallbackListener. Most UIMA developers will prefer to implement the former.
-
-
Method Summary
All Methods Instance Methods Abstract 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.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
void initializationComplete()
Called when the Collection Processing Manager's initialization has completed.
-
batchProcessComplete
void batchProcessComplete()
Called when the processing of a batch has completed.
-
collectionProcessComplete
void collectionProcessComplete()
Called when the processing of an entire collection has completed.
-
paused
void paused()
Called when the processing has been paused.
-
resumed
void resumed()
Called when the processing has been resumed (after it had been previously paused).
-
aborted
void aborted()
Called when the processing has been aborted.
-
-