RoundRobinSelector provides a simple provider scoped round-robin selection strategy.
| 24 | |
| 25 | // RoundRobinSelector provides a simple provider scoped round-robin selection strategy. |
| 26 | type RoundRobinSelector struct { |
| 27 | mu sync.Mutex |
| 28 | cursors map[string]int |
| 29 | maxKeys int |
| 30 | } |
| 31 | |
| 32 | // FillFirstSelector selects the first available credential (deterministic ordering). |
| 33 | // This "burns" one account before moving to the next, which can help stagger |
nothing calls this directly
no outgoing calls
no test coverage detected