Producer - Consumer Queue


Consider the following code for a queue with multiple producers and consumers. The close() function is guaranteed to be called exactly once by the user code, and enqueue() will not be called after that. dequeue() is supposed to block if the queue is empty and to return an empty optional if the queue is closed and all the elements have been dequeued. Which of the following are true? Give a short explanation.

Futures


Consider the following code for implementing a future mechanism (the set() function is guaranteed to be called exactly once by the user code). Which of the following are true? Give a short explanation.

Continuations


Consider the following code for enqueueing a continuation on a future (the set() function is guaranteed to be called exactly once but he user code). Which of the following are true? Give a short explanation.

Thread Pool