This commit is contained in:
Moishe Lettvin
2024-02-27 13:03:07 -05:00
parent cec2bdc15f
commit 8f9c252af9
3 changed files with 5 additions and 3 deletions

View File

@@ -50,6 +50,10 @@ class PipeService(AbstractPipeService):
self.source = source
self.sink = sink
def chain(self, service: AbstractPipeService) -> AbstractPipeService:
self.source = service.sink
return self
async def process_queue(self):
if not self.source:
return