optimization for default pool

This commit is contained in:
Andy Pan 2018-08-04 09:42:25 +08:00
parent 9af581c867
commit 87b15034c5
1 changed files with 5 additions and 9 deletions

14
ants.go
View File

@ -48,15 +48,6 @@ func init() {
}
}
// Release Closed the default pool
func Release() {
defaultAntsPool.Release()
defaultAntsPool, err = NewPool(DefaultAntsPoolSize)
if err != nil {
panic(err)
}
}
// Submit submit a task to pool
func Submit(task f) error {
return defaultAntsPool.Submit(task)
@ -77,6 +68,11 @@ func Free() int {
return defaultAntsPool.Free()
}
// Release Closed the default pool
func Release() {
defaultAntsPool.Release()
}
// Errors for the Ants API
var (
ErrInvalidPoolSize = errors.New("invalid size for pool")