Skip to content

Instantly share code, notes, and snippets.

@jwreagor
Created April 3, 2018 06:19
Show Gist options
  • Save jwreagor/ec38952130eff9f28065f2188970f162 to your computer and use it in GitHub Desktop.
Save jwreagor/ec38952130eff9f28065f2188970f162 to your computer and use it in GitHub Desktop.
// Pool holds Clients.
type Pool struct {
pool chan *Client
}
// NewPool creates a new pool of Clients.
func NewPool(max int) *Pool {
return &Pool{
pool: make(chan *Client, max),
}
}
// Borrow a Client from the pool.
func (p *Pool) Borrow() *Client {
var c *Client
select {
case c = <-p.pool:
default:
c = newClient()
}
return c
}
// Return returns a Client to the pool.
func (p *Pool) Return(c *Client) {
select {
case p.pool <- c:
default:
// let it go, let it go...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment