mirror of https://github.com/panjf2000/ants.git
28 lines
360 B
Go
28 lines
360 B
Go
package ants
|
|
|
|
import "math"
|
|
|
|
const DEFAULT_POOL_SIZE = math.MaxInt32
|
|
|
|
var defaultPool = NewPool(DEFAULT_POOL_SIZE)
|
|
|
|
func Push(task f) error {
|
|
return defaultPool.Push(task)
|
|
}
|
|
|
|
func Running() int {
|
|
return defaultPool.Running()
|
|
}
|
|
|
|
func Cap() int {
|
|
return defaultPool.Cap()
|
|
}
|
|
|
|
func Free() int {
|
|
return defaultPool.Free()
|
|
}
|
|
|
|
func Wait() {
|
|
defaultPool.Wait()
|
|
}
|