rsocket-cpp icon indicating copy to clipboard operation
rsocket-cpp copied to clipboard

C++ implementation of RSocket

Results 51 rsocket-cpp issues
Sort by recently updated
recently updated
newest added

Howdy, I'm new to the project but I have built several reactive projects in Java with Rx1, 2, and now Reactor, and Reactor Spring. Given Pivotal's backing and simpler semantics...

``` [heng@host02-cluster yarpl]$ ./yarpl-tests [==========] Running 181 tests from 11 test cases. [----------] Global test environment set-up. [----------] 1 test from MocksTest [ RUN ] MocksTest.SelfManagedMocks [ OK ] MocksTest.SelfManagedMocks...

Please consider to adopt Java solution: https://github.com/rsocket/rsocket-java/blob/develop/rsocket-core/src/main/java/io/rsocket/StreamIdSupplier.java getNextStreamId() in rsocket-cpp SDK. ``` StreamId RSocketStateMachine::getNextStreamId() { constexpr auto limit = static_cast(std::numeric_limits::max() - 2); auto const streamId = nextStreamId_; if (streamId >=...

Errors: ``` In file included from /usr/ports/net/rsocket-cpp/work/rsocket-cpp-0.10.0-942-g3d878b1e/rsocket/RSocket.cpp:15: In file included from /usr/ports/net/rsocket-cpp/work/rsocket-cpp-0.10.0-942-g3d878b1e/rsocket/RSocket.h:17: /usr/ports/net/rsocket-cpp/work/rsocket-cpp-0.10.0-942-g3d878b1e/rsocket/RSocketClient.h:44:18: error: explicitly defaulted move assignment operator is implicitly deleted [-Werror,-Wdefaulted-function-deleted] RSocketClient& operator=(RSocketClient&&) = default; ^ ``` Please...

Besides adding a document file: - modified CMakeLists.txt to resolve to build errors. - excluded benchmark stuff to resolve platform issue. (I don't believe 'benchmarks' can be built on Windows...

No document about *build* on Windows.

I am running [warm resumption example client](https://github.com/rsocket/rsocket-cpp/blob/master/rsocket/examples/resumption/WarmResumption_Client.cpp) (head of master) against java server imitating one from this example. After reconnect client sends RESUME frame with unexpected implied position 0, seen...

I am trying to build YARPL library following instructions as mentioned in the readme. ``` # inside root ./yarpl mkdir -p build cd build cmake ../ -DCMAKE_BUILD_TYPE=DEBUG make -j ./yarpl-tests...

I was following the readme file to build yarpl for fbthrift Building yarpl and this showed up.... What is this?