(topic string, partition int32, offset int64, metadata string)
| 982 | func (s *consumerGroupSession) GenerationID() int32 { return s.generationID } |
| 983 | |
| 984 | func (s *consumerGroupSession) MarkOffset(topic string, partition int32, offset int64, metadata string) { |
| 985 | if pom := s.offsets.findPOM(topic, partition); pom != nil { |
| 986 | pom.MarkOffset(offset, metadata) |
| 987 | } |
| 988 | } |
| 989 | |
| 990 | func (s *consumerGroupSession) Commit() { |
| 991 | s.offsets.Commit() |
no test coverage detected