[FEAT MERGE]vos merge into master

Co-authored-by: ZenoWang <wzybuaasoft@163.com>
Co-authored-by: zhjc1124 <zhjc1124@gmail.com>
Co-authored-by: JiahuaChen <garfieldjia@qq.com>
This commit is contained in:
nroskill
2023-02-24 14:26:20 +00:00
committed by ob-robot
parent 11dc664903
commit a4c97d03f7
284 changed files with 9655 additions and 4755 deletions

View File

@ -398,25 +398,6 @@ protected:
CALL_WITH_RETRY(ObRpcProxy::rpc_call(pcode, args, result, handle, opts));
}
template <typename Input>
int rpc_call(ObRpcPacketCode pcode,
const Input &args, Handle *handle, const ObRpcOpts &opts)
{
CALL_WITH_RETRY(ObRpcProxy::rpc_call(pcode, args, handle, opts));
}
template <typename Output>
int rpc_call(ObRpcPacketCode pcode, Output &result,
Handle *handle, const ObRpcOpts &opts)
{
CALL_WITH_RETRY(ObRpcProxy::rpc_call(pcode, result, handle, opts));
}
int rpc_call(ObRpcPacketCode pcode, Handle *handle, const ObRpcOpts &opts)
{
CALL_WITH_RETRY(ObRpcProxy::rpc_call(pcode, handle, opts));
}
template <typename Input>
int rpc_post(ObRpcPacketCode pcode, const Input &args,
rpc::frame::ObReqTransport::AsyncCB *cb, const ObRpcOpts &opts)