MCPcopy Create free account
hub / github.com/apache/impala / UnRegisterRemainingRPCs

Method UnRegisterRemainingRPCs

be/src/service/client-request-state.cc:2531–2538  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2529}
2530
2531void ClientRequestState::UnRegisterRemainingRPCs() {
2532 lock_guard<mutex> l(lock_);
2533 for (auto rpc_context: pending_rpcs_) {
2534 rpc_context->UnRegister();
2535 }
2536 track_rpcs_ = false;
2537 pending_rpcs_.clear();
2538}
2539
2540void ClientRequestState::CopyRPCs(ClientRequestState& from_request) {
2541 lock_guard<mutex> l_to(lock_);

Callers 2

TESTFunction · 0.80

Calls 2

UnRegisterMethod · 0.80
clearMethod · 0.65

Tested by 1

TESTFunction · 0.64