ants/examples/main.go

81 lines
2.1 KiB
Go
Raw Normal View History

2018-05-20 18:57:48 +03:00
// MIT License
// Copyright (c) 2018 Andy Pan
// 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
// 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:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// 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.
package main
import (
"fmt"
"sync"
2018-05-24 14:27:54 +03:00
"sync/atomic"
2018-07-02 09:45:25 +03:00
"time"
2018-05-23 06:05:23 +03:00
"github.com/panjf2000/ants"
)
2018-05-24 14:27:54 +03:00
var sum int32
2018-05-23 06:05:23 +03:00
2018-12-03 06:23:25 +03:00
func myFunc(i interface{}) {
n := i.(int32)
atomic.AddInt32(&sum, n)
2018-05-24 14:27:54 +03:00
fmt.Printf("run with %d\n", n)
}
2018-12-03 06:23:25 +03:00
func demoFunc() {
2018-05-26 03:42:10 +03:00
time.Sleep(10 * time.Millisecond)
fmt.Println("Hello World!")
}
2018-05-23 06:05:23 +03:00
func main() {
2018-07-02 09:16:39 +03:00
defer ants.Release()
2018-05-23 06:05:23 +03:00
runTimes := 1000
2018-07-06 15:24:47 +03:00
// use the common pool
var wg sync.WaitGroup
2018-05-26 03:42:10 +03:00
for i := 0; i < runTimes; i++ {
wg.Add(1)
2018-12-01 14:26:58 +03:00
ants.Submit(func() {
2018-05-26 03:42:10 +03:00
demoFunc()
wg.Done()
})
}
wg.Wait()
fmt.Printf("running goroutines: %d\n", ants.Running())
fmt.Printf("finish all tasks.\n")
// use the pool with a function
2018-07-06 15:39:23 +03:00
// set 10 the size of goroutine pool and 1 second for expired duration
2018-12-01 14:26:58 +03:00
p, _ := ants.NewPoolWithFunc(10, func(i interface{}) {
2018-05-23 06:05:23 +03:00
myFunc(i)
wg.Done()
})
2018-07-02 09:16:39 +03:00
defer p.Release()
2018-05-26 03:42:10 +03:00
// submit tasks
for i := 0; i < runTimes; i++ {
wg.Add(1)
p.Serve(int32(i))
}
wg.Wait()
2018-05-24 13:30:58 +03:00
fmt.Printf("running goroutines: %d\n", p.Running())
2018-05-24 14:27:54 +03:00
fmt.Printf("finish all tasks, result is %d\n", sum)
}