summaryrefslogtreecommitdiff
path: root/lib/gras_impl/block_actor.hpp
diff options
context:
space:
mode:
authorJosh Blum2012-10-04 00:01:47 -0700
committerJosh Blum2012-10-04 00:01:47 -0700
commit00275d8662f2d151d382999419b1424e87e64c08 (patch)
treecaff0cf2f05f47360546a41d7d6f5e3e76e89ee6 /lib/gras_impl/block_actor.hpp
parent4435b47e562ee8472d45d1d3a6016bc516d22322 (diff)
downloadsandhi-00275d8662f2d151d382999419b1424e87e64c08.tar.gz
sandhi-00275d8662f2d151d382999419b1424e87e64c08.tar.bz2
sandhi-00275d8662f2d151d382999419b1424e87e64c08.zip
work on the set/get input/output per-port config
Diffstat (limited to 'lib/gras_impl/block_actor.hpp')
-rw-r--r--lib/gras_impl/block_actor.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/gras_impl/block_actor.hpp b/lib/gras_impl/block_actor.hpp
index 0d193b0..14bfacc 100644
--- a/lib/gras_impl/block_actor.hpp
+++ b/lib/gras_impl/block_actor.hpp
@@ -114,10 +114,9 @@ struct BlockActor : Apology::Worker
//per port properties
std::vector<size_t> input_items_sizes;
std::vector<size_t> output_items_sizes;
- std::vector<size_t> input_history_items;
- std::vector<size_t> output_multiple_items;
- std::vector<size_t> input_multiple_items;
- std::vector<bool> input_inline_enables;
+ std::vector<InputPortConfig> input_configs;
+ std::vector<OutputPortConfig> output_configs;
+ std::vector<size_t> input_reserve_items;
//keeps track of production
std::vector<uint64_t> items_consumed;