My current version of multi-threaded source code involves an instance of a Javascript interpreter, Jurassic. And it is not thread safe. Therefore in order to avoid multiple threads calling the same interpreter, I'm declaring an interpreter for each thread like this:
(_from and _to are class members as input arguments to each thread worker.)
public void Fill()
{
var engine = new ScriptEngine();
engine.Execute(_jsDoc);
for (int idx = _from; idx < _to; idx++)
...
}
Now the engine.Execute function is a bit slow. So I don't want to have an "engine.Execute" statement in the Parallel.For. Is there a way for me to convert the original code into using the TPL library and I don't need to add the extra burden of engine.Execute in each loop?
By the way, my title may not be that accurate. Please help me refine it if possible. :)
Execute()? How would that work? Or am I misunderstanding you? – svick Nov 9 '12 at 10:18