GithubHelp home page GithubHelp logo

concrunner's Introduction

concrunner

Package concrunner is a package for running a max number of functions concurrently. It runs those functions keeping goroutines limited to the max number and then waits for them to be done. It also combines the results and errors of those functions.

You can use the package level methods to run a bunch of functions concurrently or create a new concrunner and enqueue functions to it. (Eg. in a for loop)

Usage

err := concrunner.RunAndError(func() error { 
                                //... Do something 
                                return nil
                                }, func() error {
                                // .. Do something else
                                return nil
                                })
          
cr := concrunner.New(10) // Run a max of 10 functions concurrently
cr.Run(func() {
    //Do something
    })
cr.RunAndError(func() error {
    err := doSomethingElse()
    return err
  })
cr.RunAndCombine(func() (interface{}, error) {
  // Do something 
  return result, err
})

for st := range structs {
  cr.RunWithArgs(func(val StructType) error {
    // Do stuff with val
    return err //Return optional error
  }, st)
}

results, err := cr.Wait()
// The resulting error will be nill if none of the functions returned an error 
// and of type MultiError if any of them did. 
// Results is just a list of results from each function

concrunner's People

Contributors

revantk avatar

Watchers

 avatar

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.