(topic string, partition int32, key, value Encoder, offset int64)
| 718 | } |
| 719 | |
| 720 | func (r *FetchResponse) AddMessage(topic string, partition int32, key, value Encoder, offset int64) { |
| 721 | r.AddMessageWithTimestamp(topic, partition, key, value, offset, time.Time{}, 0) |
| 722 | } |
| 723 | |
| 724 | func (r *FetchResponse) AddRecord(topic string, partition int32, key, value Encoder, offset int64) { |
| 725 | r.AddRecordWithTimestamp(topic, partition, key, value, offset, time.Time{}) |