-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathSchedulerTwo.cpp
67 lines (37 loc) · 1.38 KB
/
SchedulerTwo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//----------- SchedulerTwo.cpp
#include "rxcpp/rx.hpp"
int main()
{
auto coordination = rxcpp::identity_current_thread();
auto worker = coordination.create_coordinator().get_worker();
auto start = coordination.now() + std::chrono::milliseconds(1);
auto period = std::chrono::milliseconds(1);
auto values = rxcpp::observable<>::interval(start,period).
take(5).
replay(2, coordination);
worker.schedule([&](const rxcpp::schedulers::schedulable&){
values.subscribe(
[](long v){
printf("#1 -- %d : %ld\n",
std::this_thread::get_id(),v);
},
[](){
printf("#1 --- OnCompleted\n");});
});
worker.schedule([&](const rxcpp::schedulers::schedulable&){
values.subscribe(
[](long v){
printf("#2 -- %d : %ld\n",
std::this_thread::get_id(),v);
},
[](){
printf("#2 --- OnCompleted\n");});
});
// Start emitting
worker.schedule([&](const rxcpp::schedulers::schedulable&){
values.connect();
});
// Add blocking subscription to see results
values.as_blocking().subscribe();
return 0;
}