diff options
Diffstat (limited to 'src/server/BlockImpl.hpp')
-rw-r--r-- | src/server/BlockImpl.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/BlockImpl.hpp b/src/server/BlockImpl.hpp index 2e3e5fcd..701e2188 100644 --- a/src/server/BlockImpl.hpp +++ b/src/server/BlockImpl.hpp @@ -121,6 +121,9 @@ public: /** Run block for an entire process cycle (calls run()). */ virtual void process(RunContext& context); + /** Bypass block for an entire process cycle (called from process()). */ + virtual void bypass(RunContext& context); + /** Run block for a portion of process cycle (called from process()). */ virtual void run(RunContext& context) = 0; |