In Python, how can I send a Queue to a multiprocessing.Process after it has already been started? -
typically like:
q = queue() p = process(target=f, args=(q,)) p.start()
is there way pass p queue? er... think - can done through q?
- yes, can done via
q
. can pass object there,queue
included - i wouldn't recommend practice, however. describe why need this, maybe there's better design.
Comments
Post a Comment