WPILibC++ 2023.4.3-108-ge5452e3
|
A simple pool allocator for Buffers. More...
#include <wpinet/uv/Buffer.h>
Public Member Functions | |
SimpleBufferPool (size_t size=4096) | |
Constructor. More... | |
~SimpleBufferPool () | |
SimpleBufferPool (const SimpleBufferPool &other)=delete | |
SimpleBufferPool & | operator= (const SimpleBufferPool &other)=delete |
Buffer | Allocate () |
Allocate a buffer. More... | |
Buffer | operator() () |
Allocate a buffer. More... | |
void | Release (std::span< Buffer > bufs) |
Release allocated buffers back into the pool. More... | |
void | Clear () |
Clear the pool, releasing all buffers. More... | |
size_t | Remaining () const |
Get number of buffers left in the pool before a new buffer will be allocated from the heap. More... | |
A simple pool allocator for Buffers.
Buffers are allocated individually but are reused rather than returned to the heap.
DEPTH | depth of pool |
|
inlineexplicit |
Constructor.
size | Size of each buffer to allocate. |
|
inline |
|
delete |
|
inline |
Allocate a buffer.
|
inline |
Clear the pool, releasing all buffers.
|
inline |
Allocate a buffer.
|
delete |
|
inline |
Release allocated buffers back into the pool.
This is NOT safe to use with arbitrary buffers unless they were allocated with the same size as the buffer pool allocation size.
|
inline |
Get number of buffers left in the pool before a new buffer will be allocated from the heap.