如何连接websocket feed

时间:2017-06-14 13:47:50

标签: r api websocket feed

如何在 public static <T> Collector<CompletableFuture<T>, ?, CompletableFuture<List<T>>> sequenceCollector() { return Collectors.collectingAndThen(Collectors.toList(), com -> sequence(com)); } 内连接到此websocket Feed:

this link

我已阅读wss://ws-feed.gdax.com帖子,但我无法理解工作流程。

是否可以使用Stream<CompletableFuture<Integer>> stream = Stream.of( CompletableFuture.completedFuture(1), CompletableFuture.completedFuture(2), CompletableFuture.completedFuture(3) ); CompletableFuture<List<Integer>> ans = stream.collect(sequenceCollector()); 连接到该websocket Feed?如果是这样,怎么样?

提前致谢。

1 个答案:

答案 0 :(得分:0)

是的。有可能的。您可以使用this存储库来帮助您入门-