GNU Radio 3.4.0 C++ API
|
Concrete scheduler that uses the single_threaded_scheduler. More...
#include <gr_scheduler_sts.h>
Public Member Functions | |
~gr_scheduler_sts () | |
void | stop () |
Tell the scheduler to stop executing. | |
void | wait () |
Block until the graph is done. | |
Static Public Member Functions | |
static gr_scheduler_sptr | make (gr_flat_flowgraph_sptr ffg) |
Protected Member Functions | |
gr_scheduler_sts (gr_flat_flowgraph_sptr ffg) | |
Construct a scheduler and begin evaluating the graph. |
Concrete scheduler that uses the single_threaded_scheduler.
gr_scheduler_sts::gr_scheduler_sts | ( | gr_flat_flowgraph_sptr | ffg | ) | [protected] |
Construct a scheduler and begin evaluating the graph.
The scheduler will continue running until all blocks until they report that they are done or the stop method is called.
gr_scheduler_sts::~gr_scheduler_sts | ( | ) |
static gr_scheduler_sptr gr_scheduler_sts::make | ( | gr_flat_flowgraph_sptr | ffg | ) | [static] |
void gr_scheduler_sts::stop | ( | ) | [virtual] |
Tell the scheduler to stop executing.
Implements gr_scheduler.
void gr_scheduler_sts::wait | ( | ) | [virtual] |
Block until the graph is done.
Implements gr_scheduler.