summaryrefslogtreecommitdiff
path: root/lib/top_block.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/top_block.cpp')
-rw-r--r--lib/top_block.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/top_block.cpp b/lib/top_block.cpp
index 4d2f956..bfb0e85 100644
--- a/lib/top_block.cpp
+++ b/lib/top_block.cpp
@@ -136,29 +136,3 @@ bool TopBlock::wait(const double timeout)
return (*this)->token.unique();
}
-
-///////////////////////// Deprecated interfaces ////////////////////////
-
-void TopBlock::start(const size_t max_items)
-{
- this->set_max_noutput_items(max_items);
- this->start();
-}
-
-void TopBlock::run(const size_t max_items)
-{
- this->set_max_noutput_items(max_items);
- this->run();
-}
-
-int TopBlock::max_noutput_items(void) const
-{
- return this->get_global_config().maximum_output_items;
-}
-
-void TopBlock::set_max_noutput_items(int max_items)
-{
- gras::GlobalBlockConfig config = this->get_global_config();
- config.maximum_output_items = max_items;
- this->set_global_config(config);
-}