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

Add email recipient to all new Trac tickets -

400 Bad Request on Apache/PHP AddHandler wrapper -

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