Giter Site home page Giter Site logo

threadpool's Introduction

threadpool

C++ thread pool (SHARED library after building)

how to use:

$ git clone [email protected]:shuming1998/threadpool.git
$ cd threadpool
$ ./autobuild.sh
#include "threadpool.h"
// define the your task class
class YourTask : public Task {
public:
    // define your construct 
    YourTask(params);
    // all works you need to do will be done there
    void run() override;
private:
   	// define anything you need to do
};

int main() {
    ThreadPool pool;
    // choose work mode if needed, default is MODE_FIXED,which set thread nums by machine core nums
    pool.setMode(PoolMode::MODE_CACHED);
    pool.setMaxThreadFreeTime_(60);
    pool.start();
    
    // submit Task,define your construct
    Result res = pool.submitTask(std::make_shared<YourTask>(YourTask(params)));
    // get task's return value, [type] is the type you need
    type t = res.get().cast<type>();
	return 0;
}

threadpool's People

Contributors

shuming1998 avatar

Stargazers

 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.