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?

  1. yes, can done via q. can pass object there, queue included
  2. i wouldn't recommend practice, however. describe why need this, maybe there's better design.

Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -