Questions tagged [rxcpp]

Reactive Extensions for C++ (rxcpp) is a C++ library of algorithms that coordinate values distributed in time. rxcpp is like the STL algorithms that process values distributed in space, but for async values like network packets, IO and mouse events.

rxcpp is on github

34 questions
0
votes
1 answer

compile error in reactive extensions for cpp

I encounter a strange question about rxcpp. When capturing a rxcpp::connectable_observable variable and call it's connect method, I got a compile error as follow. 1>------ Build started: Project: LearnRx, Configuration: Debug x64…
zichao liu
  • 119
  • 4
0
votes
1 answer

RXCPP , stack overflow when I did use retry operator indefinitely in observable

I'm trying to make an observable that when an error is detected, this will be execute again, but did notice something , when "on_error()" with "retry" operator is execute, this only re-run again the Observable but, the current instance of Observable…
Whiso
  • 61
  • 1
  • 3
0
votes
1 answer

How to connect two functions returning observables?

I wrote one function that return a pair of QDateTime as observable, like this one: rxcpp::observable> experimentOne(const QDateTimeAxis * const axis { return rxcpp::observable<>::create
kindoblue
  • 141
  • 1
  • 7
0
votes
1 answer

How to properly infer a generic in a rxcpp custom operator

I've created a custom rxcpp operator called validateImplementation that should simply take a generic observable stream, make some validations on the SimpleInterface and either continue or end the stream based on a certain condition (in my case the…
Ciprian
  • 507
  • 4
  • 12
1 2
3