我有一个队列需要使用akka流图进行广播和合并。 enter image description here
我找到了图形演示和队列演示。而且不知道如何组合。谁能帮我吗?谢谢
这是图形演示
val g = RunnableGraph.fromGraph(GraphDSL.create() { implicit builder:
GraphDSL.Builder[NotUsed] =>
import GraphDSL.Implicits._
val in = Source(1 to 10)
val out = Sink.ignore
val bcast = builder.add(Broadcast[Int](2))
val merge = builder.add(Merge[Int](2))
val f1, f2, f3, f4 = Flow[Int].map(_ + 10)
in ~> f1 ~> bcast ~> f2 ~> merge ~> f3 ~> out
bcast ~> f4 ~> merge
ClosedShape
})
这是队列演示
val bufferSize = 5
val elementsToProcess = 3
val queue = Source
.queue[Int](bufferSize, OverflowStrategy.backpressure)
.throttle(elementsToProcess, 3.second)
.map(x ⇒ x * x)
.toMat(Sink.foreach(x ⇒ println(s"completed $x")))(Keep.left)
.run()
val source = Source(1 to 10)
implicit val ec = system.dispatcher
source.mapAsync(1)(x ⇒ {
queue.offer(x).map {
case QueueOfferResult.Enqueued ⇒ println(s"enqueued $x")
case QueueOfferResult.Dropped ⇒ println(s"dropped $x")
case QueueOfferResult.Failure(ex) ⇒ println(s"Offer failed
${ex.getMessage}")
case QueueOfferResult.QueueClosed ⇒ println("Source Queue closed")
}
}).runWith(Sink.ignore)
我想运行一个返回队列的图,以便为它提供元素。谢谢
答案 0 :(得分:0)
您的val queue
是运行“队列”(通过RunnableGraph
组合器成为toMat
的结果)的结果。您的g
也是RunnableGraph
(您可以称其为运行)。 为这样的图形提供元素意味着定义一个Source
,它将元素向下传递。您可以组合的是组成此类可运行图的不同组件。它需要Source
和Sink
,并且之间可以有任意数量的Flow
组件。建议您阅读the official documentation for akka streams,以了解它们的一般工作原理,尤其是查看自定义图表部分。