Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twisted alternative in C++

I'm looking for something like Twisted in Python (event-driven networking engine). I've found Boost:Asio but it is hard for me. So I need something much easier (without low level programming).

like image 845
user1307957 Avatar asked Sep 01 '25 18:09

user1307957


1 Answers

I'd recommend to start with Asio from implementing and changing the examples.

Boost.Asio is the-state-of-the-art today and one of the easiest way to start asynchronous/event-driven networking programming with C++.

So give Boost.Asio 2nd chance as it is one of the best tools around.

like image 82
Artyom Avatar answered Sep 04 '25 07:09

Artyom