Transaction which does not care of contents (Payload) of subnodes.
See Brief introduction of software transactional memory using the class Node for basic ideas of this STM and code examples.
More...
#include <transaction.h>
Public Member Functions | |
SingleTransaction (T &node) | |
T::Payload & | operator* () noexcept |
T::Payload * | operator-> () noexcept |
![]() | |
Transaction (Node< XN > &node, bool multi_nodal=true) | |
Transaction (const Snapshot< XN > &x, bool multi_nodal=true) noexcept | |
Transaction (Transaction &&x) noexcept=default | |
template<class T > | |
T::Payload & | operator[] (const shared_ptr< T > &node) |
template<class T > | |
T::Payload & | operator[] (T &node) |
bool | isMultiNodal () const noexcept |
template<typename T , typename... Args> | |
void | mark (T &talker, Args &&...args) |
Reserves an event, to be emitted from talker with arg after the transaction is committed. | |
int | unmark (const shared_ptr< XListener > &x) |
bool | isModified () const noexcept |
bool | commit () |
bool | commitOrNext () |
Combination of commit() and operator++(). | |
Snapshot< XN > | newTransactionUsingSnapshotFor (Node< XN > &supernode) |
Transaction (const Transaction &tr)=delete | |
Transaction & | operator= (const Transaction &tr)=delete |
![]() | |
Snapshot (const Snapshot &x) noexcept=default | |
Snapshot (Snapshot &&x) noexcept=default | |
Snapshot (Node< XN > &node, const Snapshot &x) noexcept | |
Snapshot (const Transaction< XN > &x) noexcept | |
Snapshot (Transaction< XN > &&x) noexcept | |
Snapshot & | operator= (const Snapshot &x) noexcept=default |
Snapshot (const Node< XN > &node, bool multi_nodal=true) | |
template<class T > | |
const T::Payload & | operator[] (const shared_ptr< T > &node) const noexcept |
template<class T > | |
const T::Payload & | operator[] (const T &node) const noexcept |
int | size () const noexcept |
of child nodes. | |
const shared_ptr< const typename Node< XN >::NodeList > | list () const noexcept |
The list of child nodes. | |
int | size (const shared_ptr< Node< XN > > &node) const noexcept |
of child nodes owned by node. | |
shared_ptr< const typename Node< XN >::NodeList > | list (const shared_ptr< Node< XN > > &node) const noexcept |
The list of child nodes owned by node. | |
bool | isUpperOf (const XN &lower) const noexcept |
Whether lower is a child of this or not. | |
void | print () |
template<typename T , typename tArgRef > | |
void | talk (T &talker, tArgRef arg) const |
Stores an event immediately from talker with arg. | |
Additional Inherited Members | |
![]() | |
local_shared_ptr< typename Node< XN >::Packet > | m_packet |
The snapshot. | |
int64_t | m_serial |
Transaction which does not care of contents (Payload) of subnodes.
See Brief introduction of software transactional memory using the class Node for basic ideas of this STM and code examples.
Definition at line 681 of file transaction.h.
|
inlinenoexcept |
Definition at line 686 of file transaction.h.
References Transactional::Snapshot< XN >::m_packet.
|
inlinenoexcept |
Definition at line 690 of file transaction.h.