mirror of https://github.com/panjf2000/ants.git
Renew the functional options in READMEs
This commit is contained in:
parent
5f1a32384f
commit
617c89699a
12
README.md
12
README.md
|
@ -36,7 +36,7 @@ Library `ants` implements a goroutine pool with fixed capacity, managing and rec
|
||||||
- 1.12.x
|
- 1.12.x
|
||||||
- 1.13.x
|
- 1.13.x
|
||||||
|
|
||||||
## ants works as the flowing flowchart
|
## `ants` works as the flowing flowchart
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img width="1028" alt="ants" src="https://user-images.githubusercontent.com/7496278/66307062-f6859980-e935-11e9-9f30-241c348cbc33.png">
|
<img width="1028" alt="ants" src="https://user-images.githubusercontent.com/7496278/66307062-f6859980-e935-11e9-9f30-241c348cbc33.png">
|
||||||
|
@ -179,6 +179,10 @@ func main() {
|
||||||
## Functional options for ants pool
|
## Functional options for ants pool
|
||||||
|
|
||||||
```go
|
```go
|
||||||
|
// Option represents the optional function.
|
||||||
|
type Option func(opts *Options)
|
||||||
|
|
||||||
|
// Options contains all options which will be applied when instantiating a ants pool.
|
||||||
type Options struct {
|
type Options struct {
|
||||||
// ExpiryDuration set the expired time (second) of every worker.
|
// ExpiryDuration set the expired time (second) of every worker.
|
||||||
ExpiryDuration time.Duration
|
ExpiryDuration time.Duration
|
||||||
|
@ -200,36 +204,42 @@ type Options struct {
|
||||||
PanicHandler func(interface{})
|
PanicHandler func(interface{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithOptions accepts the whole options config.
|
||||||
func WithOptions(options Options) Option {
|
func WithOptions(options Options) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
*opts = options
|
*opts = options
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithExpiryDuration sets up the interval time of cleaning up goroutines.
|
||||||
func WithExpiryDuration(expiryDuration time.Duration) Option {
|
func WithExpiryDuration(expiryDuration time.Duration) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.ExpiryDuration = expiryDuration
|
opts.ExpiryDuration = expiryDuration
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithPreAlloc indicates whether it should malloc for workers.
|
||||||
func WithPreAlloc(preAlloc bool) Option {
|
func WithPreAlloc(preAlloc bool) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.PreAlloc = preAlloc
|
opts.PreAlloc = preAlloc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithMaxBlockingTasks sets up the maximum number of goroutines that are blocked when it reaches the capacity of pool.
|
||||||
func WithMaxBlockingTasks(maxBlockingTasks int) Option {
|
func WithMaxBlockingTasks(maxBlockingTasks int) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.MaxBlockingTasks = maxBlockingTasks
|
opts.MaxBlockingTasks = maxBlockingTasks
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithNonblocking indicates that pool will return nil when there is no available workers.
|
||||||
func WithNonblocking(nonblocking bool) Option {
|
func WithNonblocking(nonblocking bool) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.Nonblocking = nonblocking
|
opts.Nonblocking = nonblocking
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithPanicHandler sets up panic handler.
|
||||||
func WithPanicHandler(panicHandler func(interface{})) Option {
|
func WithPanicHandler(panicHandler func(interface{})) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.PanicHandler = panicHandler
|
opts.PanicHandler = panicHandler
|
||||||
|
|
12
README_ZH.md
12
README_ZH.md
|
@ -36,7 +36,7 @@ A goroutine pool for Go
|
||||||
- 1.12.x
|
- 1.12.x
|
||||||
- 1.13.x
|
- 1.13.x
|
||||||
|
|
||||||
## ants 运行时的流程图如下
|
## `ants` 运行时的流程图如下
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img width="1028" alt="ants" src="https://user-images.githubusercontent.com/7496278/66307062-f6859980-e935-11e9-9f30-241c348cbc33.png">
|
<img width="1028" alt="ants" src="https://user-images.githubusercontent.com/7496278/66307062-f6859980-e935-11e9-9f30-241c348cbc33.png">
|
||||||
|
@ -179,6 +179,10 @@ func main() {
|
||||||
## Pool 配置
|
## Pool 配置
|
||||||
|
|
||||||
```go
|
```go
|
||||||
|
// Option represents the optional function.
|
||||||
|
type Option func(opts *Options)
|
||||||
|
|
||||||
|
// Options contains all options which will be applied when instantiating a ants pool.
|
||||||
type Options struct {
|
type Options struct {
|
||||||
// ExpiryDuration set the expired time (second) of every worker.
|
// ExpiryDuration set the expired time (second) of every worker.
|
||||||
ExpiryDuration time.Duration
|
ExpiryDuration time.Duration
|
||||||
|
@ -200,36 +204,42 @@ type Options struct {
|
||||||
PanicHandler func(interface{})
|
PanicHandler func(interface{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithOptions accepts the whole options config.
|
||||||
func WithOptions(options Options) Option {
|
func WithOptions(options Options) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
*opts = options
|
*opts = options
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithExpiryDuration sets up the interval time of cleaning up goroutines.
|
||||||
func WithExpiryDuration(expiryDuration time.Duration) Option {
|
func WithExpiryDuration(expiryDuration time.Duration) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.ExpiryDuration = expiryDuration
|
opts.ExpiryDuration = expiryDuration
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithPreAlloc indicates whether it should malloc for workers.
|
||||||
func WithPreAlloc(preAlloc bool) Option {
|
func WithPreAlloc(preAlloc bool) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.PreAlloc = preAlloc
|
opts.PreAlloc = preAlloc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithMaxBlockingTasks sets up the maximum number of goroutines that are blocked when it reaches the capacity of pool.
|
||||||
func WithMaxBlockingTasks(maxBlockingTasks int) Option {
|
func WithMaxBlockingTasks(maxBlockingTasks int) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.MaxBlockingTasks = maxBlockingTasks
|
opts.MaxBlockingTasks = maxBlockingTasks
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithNonblocking indicates that pool will return nil when there is no available workers.
|
||||||
func WithNonblocking(nonblocking bool) Option {
|
func WithNonblocking(nonblocking bool) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.Nonblocking = nonblocking
|
opts.Nonblocking = nonblocking
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WithPanicHandler sets up panic handler.
|
||||||
func WithPanicHandler(panicHandler func(interface{})) Option {
|
func WithPanicHandler(panicHandler func(interface{})) Option {
|
||||||
return func(opts *Options) {
|
return func(opts *Options) {
|
||||||
opts.PanicHandler = panicHandler
|
opts.PanicHandler = panicHandler
|
||||||
|
|
Loading…
Reference in New Issue