| 281 | class SerialMultiGetCommand : public Command { |
| 282 | public: |
| 283 | SerialMultiGetCommand(evpp::EventLoop* loop, MultiGetCallback callback) |
| 284 | : Command(loop, 0), callback_(callback) { |
| 285 | } |
| 286 | |
| 287 | virtual void OnError(int err_code) { |
| 288 | LOG(WARNING) << "MultiGetCommand OnError id =" << id(); |
nothing calls this directly
no outgoing calls
no test coverage detected