| 106 | } |
| 107 | |
| 108 | void ClientContext::Exit() { |
| 109 | if (task_thread_ && task_thread_->IsJoinable()) { |
| 110 | task_thread_->Exit(); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | void ClientContext::SaveKeyValue(const std::string& k, const std::string& v) { |
| 115 | sp_->Put(k, v); |
nothing calls this directly
no outgoing calls
no test coverage detected