nn::os::BlockingQueue::BlockingQueue Constructor

Syntax

#include <nn/os.h>

BlockingQueue();

BlockingQueue(
     uptr buffer[],
     size_t size
);

List of Overloaded Member Functions

BlockingQueue ( ) Constructor.
BlockingQueue ( uptr, size_t ) Constructor.

Description of BlockingQueue ( )

Constructs a blocking queue.

There are two constructors: one performs initialization and the other doesn't.

If you use the constructor that does not perform initialization, you must initialize the constructed queue before using it by making a separate call to Initialize.

Description of BlockingQueue ( uptr, size_t )

Constructs and initializes a blocking queue.


CONFIDENTIAL