You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by "Chris P. McCabe" <ch...@choicehotels.com> on 2001/05/15 20:47:56 UTC

Question about threads and m_parserEventsOnMain boolean

I was investigating the problem with Threads that run forever, and found
the following in TransformerImpl.java:

  /**
   * True if the parser events should be on the main thread,
   * false if not.  Experemental.  Can not be set right now.
   */
  private boolean m_parserEventsOnMain = true;


>From the comments, it sounds like the value should be false for the
non-experimental mode, and if I set it to false, the bug goes away (no
threads are left over).  But I haven't tested to see if it causes other
problems yet.

So is true the stable, non-experimental mode, or should it be false?

-Chris