| 64 | class SetCommand : public Command { |
| 65 | public: |
| 66 | SetCommand(evpp::EventLoop* evloop, uint16_t vbucket, const std::string& key, const std::string& value, |
| 67 | uint32_t flags, uint32_t expire, SetCallback callback) |
| 68 | : Command(evloop, vbucket), key_(key), value_(value), |
| 69 | flags_(flags), expire_(expire), |
| 70 | set_callback_(callback) { |
| 71 | } |
| 72 | |
| 73 | virtual void OnError(int err_code) { |
| 74 | LOG_INFO << "SetCommand OnError id=" << id(); |
nothing calls this directly
no outgoing calls
no test coverage detected