| 573 | } |
| 574 | |
| 575 | void AbstractCommand::disableWriteCheckSocket() |
| 576 | { |
| 577 | if (!checkSocketIsWritable_) { |
| 578 | return; |
| 579 | } |
| 580 | e_->deleteSocketForWriteCheck(writeCheckTarget_, this); |
| 581 | checkSocketIsWritable_ = false; |
| 582 | writeCheckTarget_.reset(); |
| 583 | } |
| 584 | |
| 585 | void AbstractCommand::setWriteCheckSocket( |
| 586 | const std::shared_ptr<SocketCore>& socket) |
nothing calls this directly
no test coverage detected