Interface SerializableBinaryOperator<T>

  • All Superinterfaces:
    BiFunction<T,​T,​T>, Serializable, SerializableBiFunction<T,​T,​T>

    public interface SerializableBinaryOperator<T>
    extends SerializableBiFunction<T,​T,​T>
    All user supplied transformation functions have to be serializable. Thus all Streamlet transformation definitions take Serializable Functions as their input. We simply decorate java.util. function definitions with a Serializable tag to ensure that any supplied lambda functions automatically become serializable.