(topic string, partition int32, key, value Encoder, offset int64)
| 720 | } |
| 721 | |
| 722 | func (r *FetchResponse) AddRecord(topic string, partition int32, key, value Encoder, offset int64) { |
| 723 | r.AddRecordWithTimestamp(topic, partition, key, value, offset, time.Time{}) |
| 724 | } |
| 725 | |
| 726 | func (r *FetchResponse) AddRecordBatch(topic string, partition int32, key, value Encoder, offset int64, producerID int64, isTransactional bool) { |
| 727 | r.AddRecordBatchWithTimestamp(topic, partition, key, value, offset, producerID, isTransactional, time.Time{}) |