Akka SourceQueue发送列表元素

问题描述 投票:0回答:1

我有一个List[String]和一个Source.queue。我想在一段时间后提供这个队列字符串元素。像这样的东西:

val data : List[String] = ""
val tick = Source.tick(0 second, 1 second, "tick")
tick.runForeach(t => queue.offer(data(??))

有人可以帮我吗?

编辑:我找到了一种方法,但寻找更优雅的方式

val tick = Source.tick(0 second, 2 second, "tick").zipWithIndex.limit(data.length)

tick.runForeach(t => {
  queue.offer(data(t._2.toInt))
}) 
scala playframework akka akka-stream
1个回答
0
投票

要在每个元素的特定时间间隔内将List[String]中的元素发送到队列,请按以下方式使用Source#delay

val data: List[String] = ???

Source(data)
  .delay(2.seconds, DelayOverflowStrategy.backpressure)
  .withAttributes(Attributes.inputBuffer(1, 1))
  .mapAsync(1)(x => queue.offer(x))
  .runWith(Sink.ignore)

使用withAttributes将输入缓冲区大小设置为1,因为默认值为16,并使用DelayOverflowStrategy.backpressure。此外,使用mapAsync,因为offer方法返回Future

或者,使用Source#throttle

Source(data)
  .throttle(1, 2.seconds, 1, ThrottleMode.Shaping)
  .mapAsync(1)(x => queue.offer(x))
  .runWith(Sink.ignore)
© www.soinside.com 2019 - 2024. All rights reserved.