-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathclose.cpp
55 lines (44 loc) · 1.5 KB
/
close.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
#include <future>
#include <iostream>
#include <thread>
#include "msd/channel.hpp"
int main()
{
msd::channel<int> channel{};
// Write data on the channel until it's closed
auto input = [](msd::channel<int>& ch, int ms) {
static int i = 0;
while (true) {
if (ch.closed()) {
break;
}
ch << ++i;
std::cout << "in: " << i << "\n";
std::this_thread::sleep_for(std::chrono::milliseconds{ms});
}
std::cout << "exit input\n";
};
auto input_future = std::async(input, std::ref(channel), 10);
// Close the channel after some time
auto timeout = [](msd::channel<int>& ch, int ms) {
std::this_thread::sleep_for(std::chrono::milliseconds{ms});
ch.close();
std::cout << "exit timeout\n";
};
auto timeout_future = std::async(timeout, std::ref(channel), 100);
// Display all the data from the channel
// When the channel is closed and empty, the iteration will end
auto write = [](msd::channel<int>& ch, int ms) {
for (auto out : ch) {
std::cout << "out: " << out << "\n";
std::this_thread::sleep_for(std::chrono::milliseconds{ms});
}
std::cout << "exit write\n";
};
auto write_future1 = std::async(write, std::ref(channel), 1);
auto write_future2 = std::async(write, std::ref(channel), 100);
input_future.wait();
timeout_future.wait();
write_future1.wait();
write_future2.wait();
}