Home | History | Annotate | Download | only in common

Lines Matching refs:ActionProcessor

27 // The structure of these classes (Action, ActionPipe, ActionProcessor, etc.)
35 // An ActionProcessor keeps a queue of Actions and processes them in order.
42 class ActionProcessor {
44 ActionProcessor() = default;
46 virtual ~ActionProcessor();
66 // Resume the suspended processing. If the ActionProcessor is not suspended
115 DISALLOW_COPY_AND_ASSIGN(ActionProcessor);
119 // in an ActionProcessor. An instance of this class can be passed to an
120 // ActionProcessor to register itself.
125 // Called when all processing in an ActionProcessor has completed. A pointer
126 // to the ActionProcessor is passed. |code| is set to the exit code of the
128 virtual void ProcessingDone(const ActionProcessor* processor,
133 virtual void ProcessingStopped(const ActionProcessor* processor) {}
137 virtual void ActionCompleted(ActionProcessor* processor,