Re: [IronPython] BeginInvoke from C# to IronPython

2011-04-10 Thread Matthew Green
Thank you! This is a way better way of doing it! On Sun, Apr 10, 2011 at 3:40 PM, Keith Rome wrote: > Not sure if you are aware, but calling a delegate like that via BeginInvoke() > is really just the same thing as using ThreadPool.QueueUserWorkItem(). You > might save yourself a lot of hassle

Re: [IronPython] BeginInvoke from C# to IronPython

2011-04-09 Thread Keith Rome
Not sure if you are aware, but calling a delegate like that via BeginInvoke() is really just the same thing as using ThreadPool.QueueUserWorkItem(). You might save yourself a lot of hassle by omitting the Class1 and event handler funny business, and just pass your callback directly to QUWI: imp