packio
packio copied to clipboard
An asynchronous msgpack-RPC and JSON-RPC library built on top of Boost.Asio.
Boost 1.75 has support for it but the tests do not pass
- as_default_on does not work - link issues (https://github.com/conan-io/conan-center-index/issues/4008)
Should work from asio 1.25
And remove -fcoroutines
C4702 is disabled in Debug because MSVC detects unreachable code in `nl_json_rpc/rpc.h` for an unknown reason...
- Mutex-free dispatcher - Client template - Session counting - ?
Error details: ``` ERROR: packio/2.5.0: Error in configure() method, line 89 self.output.warn("packio requires C++17. Your compiler is unknown. Assuming it supports C++17.") AttributeError: 'ConanOutput' object has no attribute 'warn' ```...
Is there any way to get the response to omit the data field? For the most part, it's sort of redundant information for me. If I use `set_error()` with no...
Is there a way to handle each connection by a separate thread? Background: clients keep the connections alive (connection pool) for long period of the time to send many requests...