[Laszlo-dev] For Review: Change 20080904-hqm-J Summary: call flex compiler classes directly from jar file
Henry Minsky
hminsky at laszlosystems.com
Thu Sep 4 17:43:22 PDT 2008
>
>
>
> 2)
> + exitval = flex2.compiler.util.ThreadLocalToolkit.errorCount();
> Couldn't find any doc for ThreadLocalToolkit. Are the errors additive,
> or will they be reset to 0 on each call into the compiler? (i.e. I'm
> worried about an error being 'sticky' to the next compile - I guess
> it would only result in a stray FAIL println to the error console).
>
The ThreadLocalToolkit class has a flex Logger object, which is stored
within a ThreadLocal
object, which is a Java thing that creates local vars which are unique to a
thread. The Logger object
holds the error count. So as long as each compile is done in a new thread,
the error count
will get reset. Now, the question is whether each compile actually does
happen in a new thread. I
bet Tomcat has some kind of a thread pool, so I wonder if this is going to
cause confusion
at some point.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.openlaszlo.org/pipermail/laszlo-dev/attachments/20080904/ca966dae/attachment.html
More information about the Laszlo-dev
mailing list