Hi everyone!
I’m currently using Kryo for serialization in my project.
While serializing I got ConcurrentModificationException.
At the Kryo support forums I found that it could happen when Kryo serializes some collection that’s being modified by one of the threads of my application.
I tried almost everything except making all (possible) collections synchronized.
I’m also thinking about using standard serialization more and more.
Can anybody tell if you ran across the similar problem or simply knows the answer,
how to fix?
Any help is greatly appreciated.