Redwood
Redwood

Reputation: 69312

Is java.util.Vector serialization thread-safe?

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

Answers (1)

user207421
user207421

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

Related Questions