-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java8 lambda expression in PriorityQueue cannot be serialized #421
Comments
thanks for the bug report. This isn't expected. So, this is a bug. Would you be willing to open a PR with a test that shows the bug? |
@johnynek Hi, I've created a PR to reproduce the problem (not a NPE but the same strange phenomenon). Could you take a look ? By the way I notice that this project is still using java 1.6, does it mean that the project doesn't support java 1.8 and also dosen't take the java 1.8 lambda expression into consideration? |
When I'm using
PriorityQueueSerializer
from chill-java package, I got NPE when serializingPriorityQueue
instance like this:Perhaps it's because the lambda expression is not serializable. But the strange thing is that when I removed the registration of
PriorityQueueSerializer
from kryo's registrations, the serialization works.Is this expected?
The text was updated successfully, but these errors were encountered: