69 lines
2.8 KiB
C++
69 lines
2.8 KiB
C++
|
#include "rxcpp/rx.hpp"
|
||
|
|
||
|
#include "rxcpp/rx-test.hpp"
|
||
|
#include "catch.hpp"
|
||
|
|
||
|
SCENARIO("take_until sample"){
|
||
|
printf("//! [take_until sample]\n");
|
||
|
auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7);
|
||
|
auto trigger = rxcpp::observable<>::timer(std::chrono::milliseconds(25));
|
||
|
auto values = source.take_until(trigger);
|
||
|
values.
|
||
|
subscribe(
|
||
|
[](long v){printf("OnNext: %ld\n", v);},
|
||
|
[](){printf("OnCompleted\n");});
|
||
|
printf("//! [take_until sample]\n");
|
||
|
}
|
||
|
|
||
|
SCENARIO("take_until time sample"){
|
||
|
printf("//! [take_until time sample]\n");
|
||
|
auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7);
|
||
|
auto values = source.take_until(std::chrono::steady_clock::now() + std::chrono::milliseconds(25));
|
||
|
values.
|
||
|
subscribe(
|
||
|
[](long v){printf("OnNext: %ld\n", v);},
|
||
|
[](){printf("OnCompleted\n");});
|
||
|
printf("//! [take_until time sample]\n");
|
||
|
}
|
||
|
|
||
|
#include "main.hpp"
|
||
|
|
||
|
SCENARIO("threaded take_until sample"){
|
||
|
printf("//! [threaded take_until sample]\n");
|
||
|
printf("[thread %s] Start task\n", get_pid().c_str());
|
||
|
auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7).map([](long v){
|
||
|
printf("[thread %s] Source emits, value = %ld\n", get_pid().c_str(), v);
|
||
|
return v;
|
||
|
});
|
||
|
auto trigger = rxcpp::observable<>::timer(std::chrono::milliseconds(25)).map([](long v){
|
||
|
printf("[thread %s] Trigger emits, value = %ld\n", get_pid().c_str(), v);
|
||
|
return v;
|
||
|
});
|
||
|
auto values = source.take_until(trigger, rxcpp::observe_on_new_thread());
|
||
|
values.
|
||
|
as_blocking().
|
||
|
subscribe(
|
||
|
[](long v){printf("[thread %s] OnNext: %ld\n", get_pid().c_str(), v);},
|
||
|
[](){printf("[thread %s] OnCompleted\n", get_pid().c_str());});
|
||
|
printf("[thread %s] Finish task\n", get_pid().c_str());
|
||
|
printf("//! [threaded take_until sample]\n");
|
||
|
}
|
||
|
|
||
|
SCENARIO("threaded take_until time sample"){
|
||
|
printf("//! [threaded take_until time sample]\n");
|
||
|
printf("[thread %s] Start task\n", get_pid().c_str());
|
||
|
auto source = rxcpp::observable<>::interval(std::chrono::milliseconds(10)).take(7).map([](long v){
|
||
|
printf("[thread %s] Source emits, value = %ld\n", get_pid().c_str(), v);
|
||
|
return v;
|
||
|
});
|
||
|
auto scheduler = rxcpp::observe_on_new_thread();
|
||
|
auto values = source.take_until(scheduler.now() + std::chrono::milliseconds(25), scheduler);
|
||
|
values.
|
||
|
as_blocking().
|
||
|
subscribe(
|
||
|
[](long v){printf("[thread %s] OnNext: %ld\n", get_pid().c_str(), v);},
|
||
|
[](){printf("[thread %s] OnCompleted\n", get_pid().c_str());});
|
||
|
printf("[thread %s] Finish task\n", get_pid().c_str());
|
||
|
printf("//! [threaded take_until time sample]\n");
|
||
|
}
|