--------------------------------------------------------------------
| 171 | // -------------------------------------------------------------------- |
| 172 | |
| 173 | type balanceStrategy struct { |
| 174 | coreFn func(plan BalanceStrategyPlan, memberIDs []string, topic string, partitions []int32) |
| 175 | name string |
| 176 | } |
| 177 | |
| 178 | // Name implements BalanceStrategy. |
| 179 | func (s *balanceStrategy) Name() string { return s.name } |
nothing calls this directly
no outgoing calls
no test coverage detected