Base implementation just breaks communication channel with receiver. Implementations * should add business logic here. */
| 87 | /** Base implementation just breaks communication channel with receiver. Implementations |
| 88 | * should add business logic here. */ |
| 89 | virtual void |
| 90 | cancel() |
| 91 | { |
| 92 | if (dispatch_controller_) { |
| 93 | dispatch_controller_->disable(); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | virtual ~AsyncProvider() { this->cancel(); } |
| 98 |
no test coverage detected