Akka SourceQueue发送列表元素

时间:2017-12-01 20:50:32

标签: scala playframework akka akka-stream

我有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))
}) 

1 个答案:

答案 0 :(得分: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,因为默认值为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)