-
Notifications
You must be signed in to change notification settings - Fork 879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rpc怎么实现嵌套链式调用 #104
Comments
自己实现上下文就好了嘛,rpc包里有答案不抄😓
…---原始邮件---
发件人: ***@***.***>
发送时间: 2021年11月1日(周一) 凌晨1:37
收件人: ***@***.***>;
抄送: ***@***.***>;
主题: [davyxu/cellnet] rpc怎么实现嵌套链式调用 (Issue #104)
rpc.call(func()(
rpc.call(func(){
rpc.call(func(){
})
})
))
这种写法貌似不支持?上下文会被清空,
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
你测下就知道了,多打点日志
…---原始邮件---
发件人: ***@***.***>
发送时间: 2021年11月1日(周一) 凌晨4:14
收件人: ***@***.***>;
抄送: ***@***.***>;
主题: Re: [davyxu/cellnet] rpc怎么实现嵌套链式调用 (Issue #104)
节点内部通信,网络问题断开,能否自动监测重连 SetReconnectDuration我看是只有第一次connect失败会重连,断开监测的逻辑没看到
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
只要设置了SetReconnectDuration, 客户端就会重连, 无法重连你要自己检查你自己的代码 |
thanks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rpc.call(func()(
rpc.call(func(){
rpc.call(func(){
})
})
))
这种写法貌似不支持?上下文会被清空,
The text was updated successfully, but these errors were encountered: