ants/ants.go

68 lines
2.1 KiB
Go
Raw Normal View History

2018-05-20 18:57:48 +03:00
// MIT License
2018-05-20 11:37:17 +03:00
// Copyright (c) 2018 Andy Pan
2018-05-20 18:57:48 +03:00
2018-05-20 11:37:17 +03:00
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
2018-05-20 18:57:48 +03:00
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
2018-05-20 11:37:17 +03:00
//
2018-05-20 18:57:48 +03:00
// The above copyright notice and this permission notice shall be included in all
2018-05-20 11:37:17 +03:00
// copies or substantial portions of the Software.
//
2018-05-20 18:57:48 +03:00
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
2018-05-20 11:37:17 +03:00
2018-05-19 04:15:54 +03:00
package ants
2018-05-19 07:28:03 +03:00
import "github.com/iris-contrib/errors"
2018-05-19 07:28:03 +03:00
const (
2018-05-20 16:41:32 +03:00
// DefaultPoolSize is the default capacity for a default goroutine pool
DefaultPoolSize = 50000
2018-05-20 16:09:45 +03:00
2018-05-20 16:41:32 +03:00
// DefaultCleanIntervalTime is the interval time to clean up goroutines
DefaultCleanIntervalTime = 30
)
2018-05-20 16:09:45 +03:00
// Init a instance pool when importing ants
2018-05-20 16:41:32 +03:00
var defaultPool, _ = NewPool(DefaultPoolSize)
2018-05-19 07:28:03 +03:00
2018-05-20 16:09:45 +03:00
// Push submit a task to pool
2018-05-19 07:28:03 +03:00
func Push(task f) error {
return defaultPool.Push(task)
}
2018-05-20 16:09:45 +03:00
// Running returns the number of the currently running goroutines
2018-05-19 10:22:14 +03:00
func Running() int {
return defaultPool.Running()
2018-05-19 07:28:03 +03:00
}
2018-05-20 16:09:45 +03:00
// Cap returns the capacity of this default pool
2018-05-19 07:28:03 +03:00
func Cap() int {
2018-05-19 10:22:14 +03:00
return defaultPool.Cap()
2018-05-19 07:28:03 +03:00
}
2018-05-19 10:22:14 +03:00
2018-05-20 16:09:45 +03:00
// Free returns the available goroutines to work
2018-05-19 10:22:14 +03:00
func Free() int {
return defaultPool.Free()
}
2018-05-20 16:09:45 +03:00
// Release Closed the default pool
func Release() {
2018-05-20 16:09:45 +03:00
defaultPool.Release()
}
2018-05-20 16:09:45 +03:00
// Errors for the Ants API
var (
2018-05-20 16:41:32 +03:00
ErrPoolSizeInvalid = errors.New("invalid size for pool")
ErrPoolClosed = errors.New("this pool has been closed")
)