------------------------------------------------------------------------------
| 34 | //------------------------------------------------------------------------------ |
| 35 | |
| 36 | type StickyConnPool struct { |
| 37 | pool Pooler |
| 38 | shared int32 // atomic |
| 39 | |
| 40 | state uint32 // atomic |
| 41 | ch chan *Conn |
| 42 | |
| 43 | _badConnError atomic.Value |
| 44 | } |
| 45 | |
| 46 | var _ Pooler = (*StickyConnPool)(nil) |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected