liuxiaolong
2021-04-02 a35153875f213929601a39c47f0823b310210321
1
2
3
4
5
6
7
8
9
10
11
12
13
package bhomeclient
 
type Context struct {
    Bk         Broker
    Tr         Transport
}
 
type MicroFunc func(ctx *Context, req *Request) *Reply
 
 
type Transport interface {
    RequestTopic(string, Request, int) (*Reply,error)
}