implement output buffer shutdown

This commit is contained in:
Jakob Ketterl 2021-01-17 21:01:54 +01:00
parent db83256bcf
commit ee8d896d60
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ class Chain(Flow):
w2.setInput(buffer)
def stop(self):
if self.output is not None:
self.output.stop()
for w in self.workers:
w.stop()