Source: golang-github-remeh-sizedwaitgroup Section: devel Priority: optional Maintainer: Debian Go Packaging Team Uploaders: Jack Henschel Build-Depends: debhelper (>= 11), dh-golang, golang-any Standards-Version: 4.3.0 Homepage: https://github.com/remeh/sizedwaitgroup Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-remeh-sizedwaitgroup Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-remeh-sizedwaitgroup.git XS-Go-Import-Path: github.com/remeh/sizedwaitgroup Testsuite: autopkgtest-pkg-go Package: golang-github-remeh-sizedwaitgroup-dev Architecture: all Depends: ${misc:Depends} Description: Go library for limiting the amount of concurrent goroutines SizedWaitGroup has the same role and API as sync.WaitGroup but it adds a limit of the amount of goroutines started concurrently. . SizedWaitGroup adds the feature of limiting the maximum number of concurrently started routines. It could for example be used to start multiples routines querying a database but without sending too much queries in order to not overload the given database.