| 328 | } |
| 329 | |
| 330 | bool ExecutionPlan::setFailureStrategy(FailureStrategy start) { |
| 331 | if (!failure_handler_) { |
| 332 | return false; |
| 333 | } |
| 334 | failure_handler_->setStrategy(start); |
| 335 | return true; |
| 336 | } |
| 337 | |
| 338 | bool ExecutionPlan::addCustomProcessor(custom_processor_args in) { |
| 339 | if(CallbackProcessorName == in.name) { |
no test coverage detected