| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package kafka
- const (
- NO_RESPONSE int16 = 0
- WAIT_FOR_LOCAL int16 = 1
- WAIT_FOR_ALL int16 = -1
- )
- type ProduceRequest struct {
- ResponseCondition int16
- Timeout int32
- msgSets map[*string]map[int32]*messageSet
- }
- func (p *ProduceRequest) encode(pe packetEncoder) {
- pe.putInt16(p.ResponseCondition)
- pe.putInt32(p.Timeout)
- pe.putArrayCount(len(p.msgSets))
- for topic, partitions := range p.msgSets {
- pe.putString(topic)
- pe.putArrayCount(len(partitions))
- for id, msgSet := range partitions {
- pe.putInt32(id)
- msgSet.encode(pe)
- }
- }
- }
- func (p *ProduceRequest) key() int16 {
- return 0
- }
- func (p *ProduceRequest) version() int16 {
- return 0
- }
- func (p *ProduceRequest) AddMessage(topic *string, partition int32, msg *Message) {
- if p.msgSets == nil {
- p.msgSets = make(map[*string]map[int32]*messageSet)
- }
- if p.msgSets[topic] == nil {
- p.msgSets[topic] = make(map[int32]*messageSet)
- }
- set := p.msgSets[topic][partition]
- if set == nil {
- set = newMessageSet()
- p.msgSets[topic][partition] = set
- }
- set.addMessage(msg)
- }
|