gitee.com/h79/goutils@v1.22.10/mq/producer.go (about) 1 package mq 2 3 type Producer interface { 4 Start() error 5 6 Stop() 7 8 SendJson(topic string, event interface{}) error 9 10 SendBytes(topic string, data []byte) error 11 12 SendAsync(topic string, data []byte) error 13 }