queue_producer.go 212 B

12345678910
  1. package queue
  2. import "sparrow/pkg/protocol"
  3. type QueueProducer interface {
  4. Init() error
  5. GetDefaultTopic() string
  6. Send(info *TopicPartitionInfo, msg protocol.Payload, callback Callback) error
  7. Stop() error
  8. }