Ask Your Question
3

What is the best approach in C++20 for transferring data from a thread that triggers an event to a continuously running thread in a non-obstructive manner, while ensuring efficiency, elegance, and robustness?

asked 2022-02-01 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-01-13 12:00:00 +0000

david gravatar image

The best approach in C++20 for transferring data from a thread that triggers an event to a continuously running thread in a non-obstructive manner while ensuring efficiency, elegance, and robustness is to use a multiple-producer, single-consumer queue like std::atomic<std::vector<t>>.

This approach uses two threads, one that pushes data onto the queue and another that pops the data off the queue. Because std::atomic<std::vector<t>> is lock-free, it ensures efficiency and non-obstructiveness. Additionally, it's elegant because the producer thread only needs to push data onto the queue, and the consumer thread only needs to pop data off the queue.

To ensure robustness, it's important to handle situations where the consumer thread is not keeping up with the producer thread. In these cases, the queue may fill up, causing the producer thread to block. One approach is to use a std::condition_variable to signal the producer thread when the queue has space available. Another approach is to use a bounded queue with a fixed size, so the producer thread will block if the queue is full.

In summary, using a multiple-producer, single-consumer queue like std::atomic<std::vector<t>> is the most efficient, elegant, and robust approach for transferring data between threads in C++20.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-02-01 11:00:00 +0000

Seen: 7 times

Last updated: Jan 13 '23