ChunkedBuffer::Node Struct Reference
Collaboration diagram for ChunkedBuffer::Node:

Detailed Description
The basic building block of the larger chunked buffer. A node contains a chunk of data and pointer to the next and previous nodes in the buffer.There's always at least one node in the buffer, and always exactly one node with available capacity.
Public Member Functions | |
| Node (Node *next, Node *prev, Chunk *chunk) throw () | |
Public Attributes | |
| Node * | m_next |
| Node * | m_prev |
| Chunk * | m_chunk |
The documentation for this struct was generated from the following files:
- src/ChunkedBuffer.hh
- src/ChunkedBuffer.cc