Public Member Functions | List of all members
Transactional::SingleTransaction< XN, T > Class Template Reference

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>

Inheritance diagram for Transactional::SingleTransaction< XN, T >:
Inheritance graph
[legend]

Public Member Functions

 SingleTransaction (T &node)
 
T::Payload & operator* () noexcept
 
T::Payload * operator-> () noexcept
 
- Public Member Functions inherited from Transactional::Transaction< XN >
 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
 
Transactionoperator= (const Transaction &tr)=delete
 
- Public Member Functions inherited from Transactional::Snapshot< XN >
 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
 
Snapshotoperator= (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

- Protected Attributes inherited from Transactional::Snapshot< XN >
local_shared_ptr< typename
Node< XN >::Packet > 
m_packet
 The snapshot.
 
int64_t m_serial
 

Detailed Description

template<class XN, typename T>
class Transactional::SingleTransaction< XN, T >

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.

See Also
Node, Transaction, Snapshot, SingleSnapshot.

Definition at line 681 of file transaction.h.

Member Function Documentation

template<class XN , typename T >
T::Payload& Transactional::SingleTransaction< XN, T >::operator* ( )
inlinenoexcept
Returns
Copy-constructed Payload instance for node, which will be included in the commitment.

Definition at line 686 of file transaction.h.

References Transactional::Snapshot< XN >::m_packet.

template<class XN , typename T >
T::Payload* Transactional::SingleTransaction< XN, T >::operator-> ( )
inlinenoexcept
Returns
Copy-constructed Payload instance for node, which will be included in the commitment.

Definition at line 690 of file transaction.h.


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

Generated for KAME4 by  doxygen 1.8.3