Re: [Htmlparser-user] org.htmlparser.util.NodeList:thread safe?
Brought to you by:
derrickoswald
From: Somik R. <so...@ya...> - 2003-03-03 00:06:02
|
Joe Lin wrote: > Are operations on NodeList thread-safe? I would prefer > they are not for performance concern. That wat we can > synchronize on the operations if needed. No, NodeList is not thread-safe. It was written as an alternative to Vector, and is better than using the existing collections, bcos there is no downcasting. So, I doubt if you can get better performance than this.. Regards, Somik |