type backendFactory struct {
ctx context.Context
logger logging.Logger
bf proxy.BackendFactory
consumers map[string]<-chan amqp.Delivery
mu *sync.Mutex
}
疑问:
为啥这里的consumers
可以这么申明?
那么consumers的类型到底是啥?
type backendFactory struct {
ctx context.Context
logger logging.Logger
bf proxy.BackendFactory
consumers map[string]<-chan amqp.Delivery
mu *sync.Mutex
}
疑问:
为啥这里的consumers
可以这么申明?
那么consumers的类型到底是啥?
2 回答2.4k 阅读✓ 已解决
1 回答2.4k 阅读✓ 已解决
2 回答1.7k 阅读✓ 已解决
1 回答1.2k 阅读✓ 已解决
1 回答1.4k 阅读✓ 已解决
2 回答1.2k 阅读
1 回答1.8k 阅读
拆开就好理解了,map的key是string类型,value为
<-chan amqp.Delivery
类型。<-chan amqp.Delivery
是一个通道,<-
表示该通道只能接收,不能发送,amqp.Delivery
是通道中元素的类型