Skip to content

Repository files navigation

Runloop Unix Build StatusWindows Build status

Example

#include<memory>
#include<cstdlib>
#include<corvusoft/core/run_loop.hpp>usingnamespacestd;using corvusoft::core::RunLoop;
intmain( constint, constchar** )
{
int count = 0;
constauto counter = [ &count ]( void ) { count++; returnerror_code( ); };
auto runloop = make_shared< RunLoop >( );
runloop->launch( counter );
runloop->launch( counter );
runloop->launch( counter );
runloop->start( );
runloop->wait( );
runloop->stop( );
returnEXIT_SUCCESS;
}

License

© 2013-2018 Corvusoft Limited, United Kingdom. All rights reserved.

The Runloop framework is dual licensed; See LICENSE for full details.

Support

Please contact sales@corvusoft.co.uk, for support and licensing options including bespoke software development, testing, design consultation, training, mentoring and code review.

Build

Unix

git clone --recursive https://github.com/corvusoft/runloop.git
mkdir runloop/build
cd runloop/build
cmake ..
make [-j CPU_CORES+1] install
make test

Windows

git clone --recursive https://github.com/corvusoft/runloop.git
mkdir runloop/build
cd runloop/build
cmake -G "Visual Studio 15 2017" ..
cmake --build . --target ALL_BUILD --config Release
ctest

You will now find all required components installed in the distribution folder.

Please submit all enhancements, proposals, and defects via the issue tracker.

Documentation

This codebase is intended to be as self documenting as possible. We have supplied many test cases to help aid developers.

You can locate the latest API documentation here.

Minimum Requirements

ResourceRequirement
CompilerC++14 compliant or above
OSBSD, Linux, Mac OSX, Windows

Contact

MethodDescription
TwitterTweet us your questions & feature requests.
support@corvusoft.co.ukSupport related queries.
sales@corvusoft.co.ukSale related queries.

About

Event processing loop for scheduling and coordinating asynchronous work; fire and forget.

Topics

Resources

Stars

6 stars

Watchers

5 watching

Forks

Releases

Packages

Contributors

Languages