SST 15.0
Structural Simulation Toolkit
|
Data Structures | |
struct | Header |
Public Member Functions | |
RankSyncQueue (RankInfo to_rank) | |
bool | empty () override |
Returns true if the queue is empty. | |
int | size () override |
Returns the number of activities in the queue. | |
void | insert (Activity *activity) override |
Insert a new activity into the queue. | |
Activity * | pop () override |
Remove and return the next activity. | |
Activity * | front () override |
Returns the next activity. | |
void | clear () |
Clear elements from the queue. | |
char * | getData () |
Accessor method to the internal queue. | |
uint64_t | getDataSize () |
![]() | |
SyncQueue (RankInfo to_rank) | |
RankInfo | getToRank () |
Accessor method to get to_rank. | |
|
overridevirtual |
Returns true if the queue is empty.
Implements SST::ActivityQueue.
References empty().
Referenced by empty().
|
overridevirtual |
Returns the next activity.
Implements SST::ActivityQueue.
References front().
Referenced by front().
|
overridevirtual |
Insert a new activity into the queue.
Implements SST::ActivityQueue.
References insert().
Referenced by insert().
|
overridevirtual |
Remove and return the next activity.
Implements SST::ActivityQueue.
References pop().
Referenced by pop().
|
overridevirtual |