(child *partitionConsumer)
| 413 | } |
| 414 | |
| 415 | func newBrokerSubscription(child *partitionConsumer) *brokerSubscription { |
| 416 | return &brokerSubscription{ |
| 417 | child: child, |
| 418 | released: make(chan none), |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | func (s *brokerSubscription) release() { |
| 423 | s.releaseOnce.Do(func() { |
no outgoing calls