class Geo::RingBuffer::WriteContext
Write context type, which allows efficient and safe writing.
To write data: 1) Construct WriteContext with the desired size and alignment. This reserves space in the buffer. 2) Write data to the pointer returned by GetAllocation(). 3) Destroy WriteContext. This commits the write, allowing it to be read by the consumer.
Functions
Name | Description |
---|---|
~WriteContext() | Destructor, commits data to buffer. |
GetAllocation() | Get the pointer to the data to be written. |
NonCopyable(NonCopyable &&) | Defaulted to allow move. |
operator=(NonCopyable &&) | Defaulted to allow move. |
WriteContext(RingBuffer &, u32, u32) | Construct write context, reserving space in the buffer. |
Anchor | ||||
---|---|---|---|---|
|
Geo::RingBuffer::WriteContext::~WriteContext
...
public: ~WriteContext()
...
Destructor, commits data to buffer.
Anchor | ||||
---|---|---|---|---|
|
void* Geo::RingBuffer::WriteContext::GetAllocation
...
public: void * GetAllocation() const
...
Get the pointer to the data to be written.
Anchor | ||||
---|---|---|---|---|
|
Geo::NonCopyable::NonCopyable
...
public: NonCopyable
(
NonCopyable &&
)
...
Defaulted to allow move.
Anchor | ||||
---|---|---|---|---|
|
NonCopyable& Geo::NonCopyable::operator=
...
public: NonCopyable & operator=
(
NonCopyable &&
)
...
Defaulted to allow move.
Anchor | ||||
---|---|---|---|---|
|
Geo::RingBuffer::WriteContext::WriteContext
...
public: WriteContext
(
RingBuffer & buffer,
u32 size,
u32 alignment
)
...
Construct write context, reserving space in the buffer.