在Akka Streams Doku中,我们给出了一个Scala的例子,其中的一个列表包含一个空值。这个列表被转换成一个Source,并像例子中那样被简化。
链接到Scala的推文示例:https://doc.akka.io/docs/akka/current/stream/stream-quickstart.html#first-steps
这是我翻译成Kotlin
val system = ActorSystem.create("reactive-tweets")
val ints: Source<Int, NotUsed> = Source.from(listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, null))
ints
.filter {
it != null
}
.map {
it * 2
}
.reduce { arg1, arg2 ->
arg1 + arg2
}
.runWith(Sink.foreach { a -> println("sum: " + a)}, system)
我也尝试了Source<Int?, NotUsed>
,没有改变任何东西。我想知道在后端是否发生了错误或发生了什么,流没有到达打印语句。
1条答案
按热度按时间6vl6ewon1#
Akka Streams不允许
null
元素。这在www.example.com中有说明https://doc.akka.io/docs/akka/current/stream/stream-flows-and-basics.html#illegal-stream-elements在这个例子中,你看到的不是流元素
null
,而是使用::
操作符构造列表的Nil
。在Scala中,Nil
是一个包含空列表的常量,::
在列表前面添加了一个元素。在这个例子中,它们被用来构造一个链表,然后被转换为Source
。