exitIdle invokes the ExitIdle method on the sub-balancer, a gracefulswitch balancer.
()
| 109 | // exitIdle invokes the ExitIdle method on the sub-balancer, a gracefulswitch |
| 110 | // balancer. |
| 111 | func (sbc *subBalancerWrapper) exitIdle() { |
| 112 | b := sbc.balancer |
| 113 | if b == nil { |
| 114 | return |
| 115 | } |
| 116 | b.ExitIdle() |
| 117 | } |
| 118 | |
| 119 | func (sbc *subBalancerWrapper) updateClientConnState(s balancer.ClientConnState) error { |
| 120 | sbc.ccState = &s |
no test coverage detected