如何突然停止akka流Runnable Graph?

时间:2016-08-03 14:53:06

标签: scala io akka akka-stream scala-streams

我无法弄清楚如何立即停止akka流Runnable Graph?如何使用killswitch实现这一目标?我开始使用akka流只需要几天时间。在我的情况下,我正在从文件中读取行并在流程中执行一些操作并写入接收器。我想做的是,随时随地停止阅读文件,我希望这可能会停止整个运行图。对此有任何想法将不胜感激。

提前致谢。

2 个答案:

答案 0 :(得分:2)

从Akka Streams 2.4.3开始,有一种优雅的方法可以通过KillSwitch从外部阻止流。

请考虑以下示例,该示例在10秒后停止流。

object ExampleStopStream extends App {

  implicit val system = ActorSystem("streams")
  implicit val materializer = ActorMaterializer()

  import system.dispatcher

  val source = Source.
    fromIterator(() => Iterator.continually(Random.nextInt(100))).
    delay(500.millis, DelayOverflowStrategy.dropHead)
  val square = Flow[Int].map(x => x * x)
  val sink = Sink.foreach(println)

  val (killSwitch, done) =
    source.via(square).
    viaMat(KillSwitches.single)(Keep.right).
    toMat(sink)(Keep.both).run()

  system.scheduler.scheduleOnce(10.seconds) {
    println("Shutting down...")
    killSwitch.shutdown()
  }

  done.foreach { _ =>
    println("I'm done")
    Await.result(system.terminate(), 1.seconds)
  }

}

答案 1 :(得分:1)

单向具有服务或shutdownhookup,可以调用图形可取消

val graph=
    Source.tick(FiniteDuration(0,TimeUnit.SECONDS), FiniteDuration(1,TimeUnit.SECONDS), Random.nextInt).to(Sink.foreach(println))
  val cancellable=graph.run()

  cancellable.cancel

cancellable.cancel可以是ActorSystem.registerOnTermination

的一部分