All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TraceCollection Class Reference

This class owns lists of TraceEvent instances per thread, and allows read access to them. More...

Classes

class  Visitor
 This interface provides a way to access data a TraceCollection. More...
 

Public Types

using This = TraceCollection
 
using EventList = TraceEventList
 
using EventListPtr = std::unique_ptr< EventList >
 

Public Member Functions

 TF_MALLOC_TAG_NEW ("Trace","TraceCollection")
 
 TraceCollection ()=default
 Constructor. More...
 
 TraceCollection (TraceCollection &&)=default
 Move constructor. More...
 
TraceCollectionoperator= (TraceCollection &&)=default
 Move assignment operator. More...
 
 TraceCollection (const TraceCollection &)=delete
 
TraceCollectionoperator= (const TraceCollection &)=delete
 
TRACE_API void AddToCollection (const TraceThreadId &id, EventListPtr &&events)
 Appends events to the collection. More...
 
TRACE_API void Iterate (Visitor &visitor) const
 Forward iterates over the events of the collection and calls the visitor callbacks. More...
 
TRACE_API void ReverseIterate (Visitor &visitor) const
 Reverse iterates over the events of the collection and calls the visitor callbacks. More...
 

Detailed Description

This class owns lists of TraceEvent instances per thread, and allows read access to them.

Definition at line 49 of file collection.h.

Constructor & Destructor Documentation

TraceCollection ( )
default

Constructor.

TraceCollection ( TraceCollection &&  )
default

Move constructor.

Member Function Documentation

TRACE_API void AddToCollection ( const TraceThreadId &  id,
EventListPtr &&  events 
)

Appends events to the collection.

The collection will take ownership of the data.

TRACE_API void Iterate ( Visitor visitor) const

Forward iterates over the events of the collection and calls the visitor callbacks.

TraceCollection& operator= ( TraceCollection &&  )
default

Move assignment operator.

TRACE_API void ReverseIterate ( Visitor visitor) const

Reverse iterates over the events of the collection and calls the visitor callbacks.


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