在Java 8 lambda中使用本地Vavr不可变集合

时间:2017-12-12 23:21:09

标签: java lambda java-8 vavr

鉴于下面的代码片段,我将如何使用Vavr不可变列表或流?我不能作为局部变量,因为没有办法将它标记为最终。我不想将List<CurvePoint> points提升为班级成员。

import io.vavr.collection.List;

private RemoteFileTemplate template;

public <T> List<T> loadObjects(Class<T> type, InputStream stream) {...}

public List<CurvePoint> getCurvePoints(String path, FTPFile file) {
    final List<CurvePoint> points = List.empty();
    template.get(path + "/" + file.getName(), s -> {
        // The final local variable points cannot be assigned. It must be blank and not using a compound assignment
        points = points.appendAll(loadObjects(CurvePoint.class, s));
    });

    return points;
}

public class RemoteFileTemplate<F> implements RemoteFileOperations<F>, InitializingBean, BeanFactoryAware {
    public boolean get(final String remotePath, final InputStreamCallback callback) {...}

1 个答案:

答案 0 :(得分:1)

这是void doStuff(Callback<Whatever> callback)语法的问题:难以进行单元测试,并将发射器(RemoteFileTemplate)与使用者(回调代码)紧密耦合。

如果签名是CompletableFuture<Whatever> doStuff(),那么你可以自由地编写不可变代码(使用Vavr或其他任何东西)。然后你可以用return List.ofAll(template.get(path + "/" + file.getName()).get())的精神为同步代码写一些东西,或者为异步代码写return template.get(path + "/" + file.getName()).thenApply(List::ofAll)