Home | History | Annotate | Download | only in common

Lines Matching defs:ActionProcessor

30 ActionProcessor::~ActionProcessor() {
37 void ActionProcessor::EnqueueAction(AbstractAction* action) {
42 void ActionProcessor::StartProcessing() {
46 LOG(INFO) << "ActionProcessor: starting " << current_action_->Type();
52 void ActionProcessor::StopProcessing() {
58 LOG(INFO) << "ActionProcessor: aborted "
71 void ActionProcessor::SuspendProcessing() {
82 LOG(INFO) << "ActionProcessor: suspending " << current_action_->Type();
86 void ActionProcessor::ResumeProcessing() {
95 LOG(INFO) << "ActionProcessor: resuming " << current_action_->Type();
102 LOG(INFO) << "ActionProcessor: resuming processing";
107 void ActionProcessor::ActionComplete(AbstractAction* actionptr,
116 LOG(INFO) << "ActionProcessor: finished "
121 LOG(INFO) << "ActionProcessor: Aborting processing due to failure.";
134 void ActionProcessor::StartNextActionOrFinish(ErrorCode code) {
143 LOG(INFO) << "ActionProcessor: starting " << current_action_->Type();