Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
/ queue Public archive

Execute tasks in parallel with a concurrency limit

License

Notifications You must be signed in to change notification settings

rylio/queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

queue

Run tasks on seperate goroutines with control

Basic Example

import "github.com/otium/queue"

q := queue.NewQueue(func(val interface{}) {


}, 20)
for i := 0; i < 200; i++ {
    q.Push(i)
}
q.Wait()

Documentation: http://godoc.org/github.com/otium/queue

About

Execute tasks in parallel with a concurrency limit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages