tags:

views:

13

answers:

1

Is Castor's Schema object thread safe?

A: 

The first guess is yes. Becuase in its source it has many syncronised methods and also it mostly uses Hashtable (which is thread-safe) to store its internal data. So, I would guess that people that designed that class thought about thread-safeness and if it's not thread-safe for some reason, then it's most likely a bug.

Superfilin