XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xtd::concurrent::stack< _ValueT, _WaitPolicyT > Class Template Reference

A lock-free LIFO stack multiple threads can push and pop items concurrently. More...

+ Inheritance diagram for xtd::concurrent::stack< _ValueT, _WaitPolicyT >:
+ Collaboration diagram for xtd::concurrent::stack< _ValueT, _WaitPolicyT >:

Public Types

using value_type = _ValueT
 
using wait_policy_type = _WaitPolicyT
 

Public Member Functions

 stack (wait_policy_type oWait=wait_policy_type())
 
 stack (stack &&src)
 
 stack (const stack &)=delete
 
stackoperator= (stack &&src)
 
stackoperator= (const stack &)=delete
 
value_type pop ()
 
void push (const value_type &value)
 
bool try_pop (value_type &oRet)
 

Detailed Description

template<typename _ValueT, typename _WaitPolicyT = null_wait_policy>
class xtd::concurrent::stack< _ValueT, _WaitPolicyT >

A lock-free LIFO stack multiple threads can push and pop items concurrently.

Template Parameters
_ValueTtype of value contained in the stack. Must be copy constructible.

Definition at line 20 of file stack.hpp.


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