Pass Parameters To Functions In New Threads


Recommended Posts

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.

Link to comment
Share on other sites

Archived

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