()
| 378 | type idler ClientConn |
| 379 | |
| 380 | func (i *idler) EnterIdleMode() { |
| 381 | (*ClientConn)(i).enterIdleMode() |
| 382 | } |
| 383 | |
| 384 | func (i *idler) ExitIdleMode() { |
| 385 | // Ignore the error returned from this method, because from the perspective |
nothing calls this directly
no test coverage detected