Pipe

Class Hierarchy
C++
template <typename T>
class Pipe;
File

Pipe.h

Pipe::~Pipe Destructor
C++
~Pipe();
Pipe::Clear Method
C++
void Clear();
Pipe::Pipe Constructor
C++
Pipe();
Description

Non-thread-safe operations.

Pipe::Pop Method
C++
bool Pop(Item& item);
Description

Operations that can be called from the reader thread.

Pipe::Push Method
C++
void Push(const Item& item);
Description

Operations that can be called from the writer thread.

Pipe::Replace Method
C++
void Replace(const Item& item, const Item& replacement);
Pipe::Swap Method
C++
void Swap(Pipe& other);
Pipe::Item Nested Type
C++
typedef T Item;