10 lines
128 B
Go
10 lines
128 B
Go
package pool
|
|
|
|
type Pool interface {
|
|
Get() (interface{}, error)
|
|
Put(interface{})
|
|
Destroy()
|
|
Capacity() int
|
|
Available() int
|
|
}
|