Is the GNU trove library thread-safe? I am particularly interested in TObjectDoubleHashMap. I looked at their documentation, but it hasn't mentioned anything, so shall we assume it is not thread-safe?
Is the Trove library thread-safe?
Asked Answered
Its not thread safe. You can use synchronized or your own Lock to make it thread safe.
It has utilities to make it thread safe. See: http://trove4j.sourceforge.net/javadocs/gnu/trove/TCollections.html
Also, since the collections are mostly backed by primitive arrays, you can (usually) safely perform read operations (iteration/get) across multiple threads.
I realize now that Peter's answer was correct at the time it was given- I linked to newer APIs. –
Merilynmeringue
Its not thread safe. You can use synchronized or your own Lock to make it thread safe.
© 2022 - 2024 — McMap. All rights reserved.