-
There is a fairly easy way to leak memory in rxcpp. It only occurs once you introduced concurrency.
Here are a few contrived examples which create a leak:
```
while (true)
{
rxcpp::sources::in…
-
In some implementation of Rx, when observable is manually created, api allow to optionally provide a manual disposable cleanup.
Here is the example from RxJs
``` Javascript
var o = Rx.Observable.cr…
-
Hello,
a great library :-)
I wanted to ask for a new release tag, since I have issues with the `timeout` operator.
I'm using tag 4.0.0 but there is still this bug in:
[https://github.com/Reactiv…
-
I would like to run an expensive task in the background (on the rxcpp event loop) and have an observable that will output the results on the main thread. I've read a previous issue about this (#151) a…
-
Is this intentional?
~~As of GCC 4.9 this is no longer supported (and it was never std. compliant) -- see "Header changes": https://gcc.gnu.org/gcc-4.9/porting_to.html~~
// Edit: this appears to ref…
-
core ideas:
an observer is also a subscription
use lift function to chain operators together
some code playing with the idea:
https://rxcpp.codeplex.com/SourceControl/network/forks/kirkshoop/rxcpp?br…
-
after running snippet below memory increase infinitely
``` cpp
#include
#include
int main(int argc,char** argv)
{
rxcpp::sources::range(1,10)
.repeat()
.subscribe([](auto i)
{
…
-
See #204 for motivating discussion.
since rxcpp is _a set of algorithms operating on values distributed in time_, the time types are so central that I would support adding the hash implementations (m…
-
Actual implementation of `interval(TimePoint when)` waits for the specified time point and then starts emitting integers infinitely:
``` cpp
auto scheduler = rxcpp::identity_current_thread();
…
-
I'm working on integration for RxCPP and Boost.ASIO as I think they are perfect match, a test scheduler using `boost::asio::io_service` can be found at https://gist.github.com/windoze/a6e684143833d5d6…