How to serialize a lambda?

后端 未结 5 809
眼角桃花
眼角桃花 2020-11-22 08:29

How can I elegantly serialize a lambda?

For example, the code below throws a NotSerializableException. How can I fix it without creating a Seriali

相关标签:
5条回答
  • 2020-11-22 09:04

    Very ugly cast. I prefer to define a Serializable extension to the functional interface I'm using

    For example:

    interface SerializableFunction<T,R> extends Function<T,R>, Serializable {}
    interface SerializableConsumer<T> extends Consumer<T>, Serializable {}
    

    then the method accepting the lambda can be defined as such :

    private void someFunction(SerializableFunction<String, Object> function) {
       ...
    }
    

    and calling the function you can pass your lambda without any ugly cast:

    someFunction(arg -> doXYZ(arg));
    
    0 讨论(0)
  • 2020-11-22 09:19

    The same construction can be used for method references. For example this code:

    import java.io.Serializable;
    
    public class Test {
        static Object bar(String s) {
            return "make serializable";
        }
    
        void m () {
            SAM s1 = (SAM & Serializable) Test::bar;
            SAM s2 = (SAM & Serializable) t -> "make serializable";
        }
    
        interface SAM {
            Object action(String s);
        }
    }
    

    defines a lambda expression and a method reference with a serializable target type.

    0 讨论(0)
  • 2020-11-22 09:20

    In case someone falls here while creating Beam/Dataflow code :

    Beam has his own SerializableFunction Interface so no need for dummy interface or verbose casts.

    0 讨论(0)
  • 2020-11-22 09:20

    If you are willing to switch to another serialization framework like Kryo, you can get rid of the multiple bounds or the requirement that the implemented interface must implement Serializable. The approach is to

    1. Modify the InnerClassLambdaMetafactory to always generate the code required for serialization
    2. Directly call the LambdaMetaFactory during deserialization

    For details and code see this blog post

    0 讨论(0)
  • 2020-11-22 09:21

    Java 8 introduces the possibility to cast an object to an intersection of types by adding multiple bounds. In the case of serialization, it is therefore possible to write:

    Runnable r = (Runnable & Serializable)() -> System.out.println("Serializable!");
    

    And the lambda automagically becomes serializable.

    0 讨论(0)
提交回复
热议问题