(ctx context.Context)
| 58 | } |
| 59 | |
| 60 | func (p *StickyConnPool) NewConn(ctx context.Context) (*Conn, error) { |
| 61 | return p.pool.NewConn(ctx) |
| 62 | } |
| 63 | |
| 64 | func (p *StickyConnPool) CloseConn(ctx context.Context, cn *Conn, reason string, fromState string) error { |
| 65 | return p.pool.CloseConn(ctx, cn, reason, fromState) |