Pickling Objects
I need to pickle object [wxpython frame object] and send it as a prameter to this function apply_async on multiproccessing pool module could someone provide me an example how can
Solution 1:
You can not serialize a widget for use in another process. I guess you want to change the GUI content from another process that is started by the multiprocessing
module. In that case, you should define a callback function in the parent process that gets called when the result of the sub-process is ready. Therefore you can use the "callback" parameter of apply_async
.
Something like:
def fun(i):
# do something inthis sub-process and then return a log message
return"finished doing something"
def cb(resultFromFun):
wx.CallAfter(window.LogData, resultFromFun)
my_pool.apply_async(fun, [i], callback = cb)
Post a Comment for "Pickling Objects"