rest_rpc icon indicating copy to clipboard operation
rest_rpc copied to clipboard

modern C++(C++11), simple, easy to use rpc framework

Results 79 rest_rpc issues
Sort by recently updated
recently updated
newest added

我在使用客户端的过程中assert(f)被触发了,导致程序退出,应用场景如下 1, 客户端有一个不断向服务端发送数据的功能,可以理解为自定义心跳。 2, 当自定义心跳超时的时候,客户端主动关闭连接,然后调用connect再进行重连。 3, 问题就出现在当自定义心跳超时后,assert(f)有时候就会被触发,程序就退出了。 我理解的是因为close的调用,导致future_map_被清空了,auto &f = future_map_[req_id]的f为空。这里的assert(f)能否改成if(f) {f->set_value()}?

双网卡情况下,做了两个server端,A和B,其中B有client订阅了A,然后A发布数据给B和C,在一台双网卡的电脑上会崩,在单网卡上没崩过并且不出现这问题。由于双网卡电脑是客户机不方便搭开发环境。这个从哪里入手,server有指定那个网卡初始化吗

程序异常时报错如下: #0 0xb6a0ee22 in rest_rpc::rpc_client::call_back(unsigned long long, boost::system::error_code const&, boost::basic_string_view) () from /mnt/data/hwt_rk3308/lib/libbtl.so #1 0xb6a139ca in boost::asio::detail::read_op::operator()(boost::system::error_code, unsigned int, int) () from /mnt/data/hwt_rk3308/lib/libbtl.so #2 0xb6a14950 in boost::asio::detail::reactive_socket_recv_op::do_complete(void*, boost::asio::detail::scheduler_operation*, boost::system::error_code const&,...

虽然VS2013没有完整的支持C++11,cplusplus_14.h里面对VS2013的兼容没有起到作用,很多constexptr也不能使用,作者还会支持VS2013吗?

当服务进程被Kill之后,客户端不会触发自动重连,在write函数里,async_write的回调中的ec值是零,不会触发callback进行重连,这种情况怎么处理

- [x] improve ci - [ ] add unit test - [ ] code coverage 95% above - [ ] add more example - [ ] fix bugs - [...

publish/subscribe测试时(mfc对话框应用)server.async_run(),保持对话框在前端时,看不出卡顿,publish/subscribe测试正常,但是对话框切换到后台后,就再也切换不回前端了(或者很卡,反正我没成功切换过来过,连其它程序甚至桌面都没办法切换),为什么?,抽空帮忙看看,谢了

我发现register_handler绑定的函数,或者subscribe监听的函数,实际上都被执行在rest_rpc内部的异步线程中,这其实带来一些不便,很多场景函数的执行被别的库强制要求在主线程,如果上面两个函数能执行在new rpc_server和new rpc_client时所在的线程就好了!

最简单的rest_rpc demo server ```c++ #include #include #include #include #include using namespace rest_rpc; using namespace rpc_service; void hello(rpc_conn conn, const std::string &str) { std::cout