Created
January 22, 2014 20:37
-
-
Save okram/8566926 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void shouldSerializeLambda() throws Exception { | |
ByteArrayOutputStream outBytes = new ByteArrayOutputStream(10); | |
ObjectOutputStream out = new ObjectOutputStream(outBytes); | |
out.writeObject((Predicate) e -> true); | |
ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(outBytes.toByteArray())); | |
Predicate predicate = (Predicate) in.readObject(); | |
assertTrue(predicate.test(null)); | |
} | |
java.io.NotSerializableException: com.tinkerpop.gremlin.olap.LambdaSerializationTest$$Lambda$1/1607460018 | |
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1184) | |
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:348) | |
at com.tinkerpop.gremlin.olap.LambdaSerializationTest.shouldSerializeLambda(LambdaSerializationTest.java:22) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) | |
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) | |
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44) | |
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) | |
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) | |
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) | |
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) | |
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) | |
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) | |
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) | |
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) | |
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) | |
at org.junit.runners.ParentRunner.run(ParentRunner.java:309) | |
at org.junit.runner.JUnitCore.run(JUnitCore.java:160) | |
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:77) | |
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:195) | |
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:63) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment