diff options
Diffstat (limited to 'action_processor.h')
-rw-r--r-- | action_processor.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/action_processor.h b/action_processor.h index 938a81d0..8311b8a6 100644 --- a/action_processor.h +++ b/action_processor.h @@ -78,8 +78,9 @@ class ActionProcessor { class ActionProcessorDelegate { public: // Called when all processing in an ActionProcessor has completed. A pointer - // to the ActionProcessor is passed. - virtual void ProcessingDone(const ActionProcessor* processor) {} + // to the ActionProcessor is passed. success is true iff all actions + // completed successfully + virtual void ProcessingDone(const ActionProcessor* processor, bool success) {} // Called when processing has stopped. Does not mean that all Actions have // completed. If/when all Actions complete, ProcessingDone() will be called. |