Is Builder.build() thread safe? I couldn't find any info in XOM Javadoc.

link|improve this question

Not sure, but the slide at xom.nu/whatswrong/img23.html says (in a very general way) "Not thread safe". – Eli Acherkan Sep 1 '11 at 6:40
feedback

1 Answer

up vote 2 down vote accepted

Builder doesn't tell us that one of the builder methods is thread-safe and we have no reason to assume it: the methods are not synchronized (look at the code) and the class uses the first available parser and delegates the work.

So we should avoid sharing one instance of nu.xom.Builder between different threads.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.