(s balancer.ClientConnState)
| 80 | } |
| 81 | |
| 82 | func (b *orcab) UpdateClientConnState(s balancer.ClientConnState) error { |
| 83 | // Delegate to the child endpoint sharding balancer, which distributes |
| 84 | // state updates to its pick_first children. |
| 85 | return b.child.UpdateClientConnState(s) |
| 86 | } |
| 87 | |
| 88 | func (b *orcab) ResolverError(err error) { |
| 89 | // Will cause an inline picker update from endpoint sharding. |
nothing calls this directly
no test coverage detected