(topic string)
| 153 | } |
| 154 | |
| 155 | func (c *consumer) Partitions(topic string) ([]int32, error) { |
| 156 | return c.client.Partitions(topic) |
| 157 | } |
| 158 | |
| 159 | func (c *consumer) ConsumePartition(topic string, partition int32, offset int64) (PartitionConsumer, error) { |
| 160 | child := &partitionConsumer{ |
nothing calls this directly
no test coverage detected