Reputation: 69312
I know the Vector class is thread-safe for adding and removing elements [reference].
If I serialize a Vector using an ObjectOutputStream am I guaranteed a consistent (and non-corrupt) state when I deserialize it even if other threads are adding and removing objects during the seralization?
Upvotes: 6
Views: 1059
Reputation: 310909
The writeObject() method is synchronized. But there's nothing in the Javadoc that guarantees that unless it's implied by the statement 'Vector is synchronized'.
Note that the readObject() method doesn't need to be synchronized, as the object isn't accessible to anybody until readObject() returns.
Upvotes: 7