It's apparently thread safe. However, can anyone tell me if it's locked with single instance of TidyMarkupDataFormat or separate instances are created for separate threads? I mean do we have multiple parsers (one per one thread) or a single parser shared among all threads.
Asked
Active
Viewed 98 times
1 Answers
0
I just checked the code of TidyMarkupDataFormat, it creates parer per unmarshalrequest. So I think it should be thread safe, as no parer is shared in different threads.

Willem Jiang
- 3,291
- 1
- 14
- 14
-
I see some locking inside TidyMarkupDataFormat in multithreaded app. I need to investigate. – Archer Dec 02 '13 at 11:09