gpt4 book ai didi

go - RPC有超时机制吗?

转载 作者:IT王子 更新时间:2023-10-29 00:37:04 26 4
gpt4 key购买 nike

如果 RPC 没有超时机制,如果它试图调用已关闭的服务器的 RPC 方法,我该如何“终止”RPC 调用?

最佳答案

您可以使用 channels实现超时模式:

import "time"

c := make(chan error, 1)
go func() { c <- client.Call("Service", args, &result) } ()
select {
case err := <-c:
// use err and result
case <-time.After(timeoutNanoseconds):
// call timed out
}

select 将阻塞,直到 client.Call 返回或 timeoutNanoseconds 过去。

关于go - RPC有超时机制吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23330024/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com