Pass Parameters To Functions In New Threads


Recommended Posts

Posted

If you call a function from a thread, the function executes in that thread, which may not be desirable, especially if the function is length and the calling thread is the UI thread. You can avoid this by instead using beginseq(MySequence), but in that form you can't pass variables.

I know there are workarounds, but I'd like to be able to pass parameters to functions in other threads if it's feasible.

Archived

This topic is now archived and is closed to further replies.