| 1594 | } |
| 1595 | |
| 1596 | void Controller::CallAfterRpcResp(const google::protobuf::Message* req, const google::protobuf::Message* res) { |
| 1597 | if (_after_rpc_resp_fn) { |
| 1598 | _after_rpc_resp_fn(this, req, res); |
| 1599 | _after_rpc_resp_fn = nullptr; |
| 1600 | } |
| 1601 | } |
| 1602 | |
| 1603 | #if defined(OS_MACOSX) |
| 1604 | typedef sig_t SignalHandler; |
no outgoing calls
no test coverage detected