Skip to content

A C++17 library providing asynchronous execution and persistent threading.

Notifications You must be signed in to change notification settings

Pridestalkerr/concur

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

thread

A C++17 library providing asynchronous execution and persistent threading.

Installation (optional)

$ make install

Usage

Include the header.

#include <concur>                // if you've installed the library
#include "./include/concur.hpp"  // if you haven't

Initiate an async instance.

con::Async async;

Run async functions, wait for their result whenever.

async([](int x){ return x * 2; }, 44);
async([](int x){ return x * 2; }, 44).get();

About

A C++17 library providing asynchronous execution and persistent threading.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published