idlePicker is used when the SubConn is IDLE and kicks the SubConn into CONNECTING when Pick is called.
| 148 | // idlePicker is used when the SubConn is IDLE and kicks the SubConn into |
| 149 | // CONNECTING when Pick is called. |
| 150 | type idlePicker struct { |
| 151 | exitIdle func() |
| 152 | } |
| 153 | |
| 154 | func (i *idlePicker) Pick(balancer.PickInfo) (balancer.PickResult, error) { |
| 155 | i.exitIdle() |
nothing calls this directly
no outgoing calls
no test coverage detected