mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-04 02:12:59 +00:00
tweak StatefulStreamWorker interface
This commit is contained in:
parent
f4a5e6cf53
commit
c560cc2010
@ -13,15 +13,18 @@ class StatefulStreamWorker:
|
||||
|
||||
def run(self, q: Queue):
|
||||
for chunk in queue_iter(q, joinable=False, timeout=3):
|
||||
self.process_chunk(chunk)
|
||||
self._process_chunk(chunk)
|
||||
|
||||
def process_chunk(self, chunk):
|
||||
def _process_chunk(self, chunk):
|
||||
for item in chunk:
|
||||
self.process(item)
|
||||
|
||||
def process(self, item) -> None:
|
||||
raise NotImplementedError
|
||||
|
||||
def results(self):
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
class StatefulStreamProcessor:
|
||||
def __init__(self, worker_factory, chunk_size=128, processes=1):
|
||||
|
Loading…
x
Reference in New Issue
Block a user