wuyuanyi135

Results 12 comments of wuyuanyi135

+1 on this feature. The connection limit forced me change the architecture of my project.

+1 I hope there is an adjustable parameter to define the fuzziness.

from my observation, the following case will also fail: Does it mean I should not use coordinator in the source anywhere? ```cpp std::vector data{1, 2, 3, 4, 5}; schedulers::run_loop rl;...

I started investigating this issue. I found that the crash was caused by the following line. https://github.com/ReactiveX/RxCpp/blob/761b932a80e2be6e2b62d232e754bd96fc448946/Rx/v2/src/rxcpp/rx-scheduler.hpp#L349 For some reason, the `weak_ptr` returned NULL, presumably the underlying shared pointer has...

One possibility is that the sources (like `just` or `iterate`) uses `identity_immediate` coordinator by default: https://github.com/ReactiveX/RxCpp/blob/761b932a80e2be6e2b62d232e754bd96fc448946/Rx/v2/src/rxcpp/sources/rx-iterate.hpp#L277 This makes more sense to me as emitting values does not sounds like asynchronous...

@kirkshoop Sorry for the late response. Here is the stack: (I am using master branch of rxcpp) ``` rxcpp::schedulers::worker::schedule_rebind(const rxcpp::schedulers::schedulable &) const rx-scheduler.hpp:815 rxcpp::schedulers::worker::schedule rx-scheduler.hpp:260 rxcpp::schedulers::schedulable::schedule rx-scheduler.hpp:621 rxcpp::schedulers::detail::action_tailrecurser::operator() rx-scheduler.hpp:715 std::__invoke_impl...

Have you tried https://www.mathworks.com/hardware-support/gentl.html ?

For me, react hot loader 3 does not work. It simply reproduce the issue in #108 Instead, I used babel transform hmr, and remove the entry point for react hot...

I am working on FATFS SQLite but it seems there is some issue of FATFS: https://github.com/espressif/esp-idf/issues/9660. This prevents the library from initializing.