| 308 | class PrefixMultiGetCommand : public Command, public MultiKeyMode<PrefixMultiGetResult, PrefixMultiGetCallback> { |
| 309 | public: |
| 310 | PrefixMultiGetCommand(evpp::EventLoop* evloop, uint16_t vbucket, const PrefixMultiKeyGetHandlerPtr& handler) |
| 311 | : Command(evloop, vbucket), MultiKeyMode(handler) { |
| 312 | } |
| 313 | |
| 314 | virtual void OnError(int err_code) { |
| 315 | LOG(WARNING) << "prefixMultiGetCommand OnError id=" << id(); |
nothing calls this directly
no outgoing calls
no test coverage detected