GithubHelp home page GithubHelp logo

cxxpool's Introduction

cxxpool

Version: 2.0.0

cxxpool is a header-only thread pool for C++. It enables you to schedule independent tasks with or without specifying task priorities. Pushing a task into the thread pool returns a future associated to the underlying execution.

cxxpool is designed for ease of use, portability, and scalability. It is written in C++11 and only depends on the standard library. Just copy src/cxxpool.h to your project and off you go! Tested with GCC, Clang, and Visual Studio.

Example

This example creates a thread pool with 4 threads and pushes three simple tasks into the pool.

#include <iostream>
#include "cxxpool.h"

int sum(int x, int y) {
    return x + y;
}

int main() {
    cxxpool::thread_pool pool{4};

    // pushing tasks and retrieving futures
    auto future1 = pool.push([]{ return 42; });
    auto future2 = pool.push([](double x){ return x; }, 13.);
    auto future3 = pool.push(sum, 6, 7);

    // output: results = 42, 13, 13
    std::cout << "results = " << future1.get() << ", ";
    std::cout << future2.get() << ", " << future3.get() << std::endl;
}

Feedback

Contact me if you have any questions or suggestions to make this a better library! You can reach me at [email protected]

cxxpool's People

Contributors

bloomen 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.