You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why does the RocketMQ Java client SDK let transaction producers and normal producers share the same defaultMQProducerImpl for sending messages, while the Go SDK requires creating two separate defaultMQProducerImpl instances? #1224
在Go版本里面 NewTransactionProducer 和 NewProducer 会创建出2个defaultProducer JAVA 创建一个事务生产者 就可以同时发送普通和事务消息,Go里面非得创建2个这是为啥呢