()
| 655 | } |
| 656 | |
| 657 | func (c *BaseClient) isClosed() bool { |
| 658 | return atomic.LoadUint32(&c.closeDone) != 0 |
| 659 | } |
| 660 | |
| 661 | // Close closes the client. If the underlying Transport is elastictransport.Closeable, it is closed as well. |
| 662 | // Close should only be called once. Later calls to Close will return ErrAlreadyClosed. |
no outgoing calls
no test coverage detected