stdex
Additional custom or not Standard C++ covered algorithms
Loading...
Searching...
No Matches
stdex::pool< T > Class Template Reference

Per-NUMA pool of items. More...

#include <stdex/pool.hpp>

Public Types

using numaid_t = int
 

Public Member Functions

pop (numaid_t numa=numa_node())
 Removes an item from the pool.
 
void push (T &&r, numaid_t numa=numa_node())
 Adds an item to the pool.
 
void clear ()
 Removes all items from the pool.
 

Detailed Description

template<class T>
class stdex::pool< T >

Per-NUMA pool of items.

Member Function Documentation

◆ pop()

template<class T >
T stdex::pool< T >::pop ( numaid_t numa = numa_node())
inline

Removes an item from the pool.

Parameters
[in]numaNUMA node to identify subpool to remove item from
Returns
An item from the pool or default value if pool is empty

◆ push()

template<class T >
void stdex::pool< T >::push ( T && r,
numaid_t numa = numa_node() )
inline

Adds an item to the pool.

Parameters
[in]rItem to add
[in]numaNUMA node to identify subpool to add item to

The documentation for this class was generated from the following file: