|
|
@ -236,17 +236,10 @@ void GRPCClient::AsyncCheckpointNotify(const std::string& ep,
|
|
|
|
|
|
|
|
|
|
|
|
CheckpointNotifyProcessor* s = new CheckpointNotifyProcessor(ch);
|
|
|
|
CheckpointNotifyProcessor* s = new CheckpointNotifyProcessor(ch);
|
|
|
|
s->Prepare(time_out);
|
|
|
|
s->Prepare(time_out);
|
|
|
|
s->response_call_back_ = nullptr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sendrecv::VariableMessage req;
|
|
|
|
sendrecv::VariableMessage req;
|
|
|
|
req.set_varname(CHECKPOINT_SAVE_MESSAGE);
|
|
|
|
req.set_varname(CHECKPOINT_SAVE_MESSAGE);
|
|
|
|
req.out_varname(dir);
|
|
|
|
req.set_out_varname(dir);
|
|
|
|
|
|
|
|
|
|
|
|
auto call = s->stub_g_.PrepareUnaryCall(
|
|
|
|
|
|
|
|
s->context_.get(), "/sendrecv.SendRecvService/CheckpointNotify", req,
|
|
|
|
|
|
|
|
&cq_);
|
|
|
|
|
|
|
|
call->StartCall();
|
|
|
|
|
|
|
|
call->Finish(&s->reply_, &s->status_, reinterpret_cast<void*>(s));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auto rpc = s->stub_->AsyncCheckpointNotify(s->context_.get(), req, &cq_);
|
|
|
|
auto rpc = s->stub_->AsyncCheckpointNotify(s->context_.get(), req, &cq_);
|
|
|
|
rpc->Finish(&s->reply_, &s->status_, reinterpret_cast<void*>(s));
|
|
|
|
rpc->Finish(&s->reply_, &s->status_, reinterpret_cast<void*>(s));
|
|
|
|