Giter Club home page Giter Club logo

Comments (3)

haifenghuang avatar haifenghuang commented on May 15, 2024 1

Thanks a lot! Maybe I'm not express myself clearly. You are right, the example is what I wanted.

from pond.

alitto avatar alitto commented on May 15, 2024

Hey @haifenghuang!
I'm afraid that pattern is not supported by this library.
I guess you could mimic that behavior if you group tasks into other functions that each run a subset of tasks one after the other (sequentially). For the sake of the example, let's say you have the following function, which takes a slice of tasks and returns another one where each element is a group of tasks which run sequentially:

func groupTasks(tasks []func(), groupSize int) (taskGroups []func()) {

	taskCount := len(tasks)
	groupCount := int(math.Ceil(float64(taskCount) / float64(groupSize)))

	var groupStart, groupEnd int

	for i := 0; i < groupCount; i++ {
		groupStart = i * groupSize
		groupEnd = int(math.Min(float64((i+1)*groupSize), float64(taskCount)))
		taskGroup := tasks[groupStart:groupEnd]
		taskGroups = append(taskGroups, func() {
			for _, task := range taskGroup {
				task()
			}
		})
	}

	return
}

Then you could submit these "grouped tasks" to a pool like this:

// Create pool
pool := pond.New(10, 1000)

// Split tasks in groups of up to 3 elements
groupedTasks := groupTasks(tasks, 3)

// Submit grouped tasks to the pool
for _, task := range groupedTasks {
	pool.Submit(task)
}

In your case though, you may want to group these tasks using different criteria.
What do you think?

from pond.

alitto avatar alitto commented on May 15, 2024

You're welcome!

from pond.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.