web-dev-qa-db-ja.com

Source.actorRefによって作成されたakkaストリームSourceの基になるActorRefへのアクセス

Source.actorRef メソッドを使用して akka.stream.scaladsl.Source オブジェクトを作成しようとしています。形の何か

import akka.stream.OverflowStrategy.fail
import akka.stream.scaladsl.Source

case class Weather(Zip : String, temp : Double, raining : Boolean)

val weatherSource = Source.actorRef[Weather](Int.MaxValue, fail)

val sunnySource = weatherSource.filter(!_.raining)
...

私の質問は:ActorRefベースのSourceオブジェクトにデータを送信するにはどうすればよいですか

ソースへのメッセージの送信は次のようなものだと思いました

//does not compile
weatherSource ! Weather("90210", 72.0, false)
weatherSource ! Weather("02139", 32.0, true)

ただし、weatherSourceには!演算子またはtellメソッドがありません。

documentation は、Source.actorRefの使用方法を説明するものではなく、次のことができると言っています...

よろしくお願いいたします。

Flowが必要です:

  import akka.stream.OverflowStrategy.fail
  import akka.stream.scaladsl.Source
  import akka.stream.scaladsl.{Sink, Flow}

  case class Weather(Zip : String, temp : Double, raining : Boolean)

  val weatherSource = Source.actorRef[Weather](Int.MaxValue, fail)

  val sunnySource = weatherSource.filter(!_.raining)

  val ref = Flow[Weather]
    .to(Sink.ignore)
    .runWith(sunnySource)

  ref ! Weather("02139", 32.0, true)

これはすべて実験的なものであり、変更される可能性があることを忘れないでください!

24
Noah

@Noahがakkaストリームの実験的な性質を指摘しているように、彼の答えは1.0リリースでは機能しない可能性があります。 この例 の例に従う必要がありました。

implicit val materializer = ActorMaterializer()
val (actorRef: ActorRef, publisher: Publisher[TweetInfo]) = Source.actorRef[TweetInfo](1000, OverflowStrategy.fail).toMat(Sink.publisher)(Keep.both).run()
actorRef ! TweetInfo(...)
val source: Source[TweetInfo, Unit] = Source[TweetInfo](publisher)
8
Thien

ActorRefのインスタンスは、すべての「実体化された値」と同様に、ストリーム全体が実体化されたとき、つまり、RunnableGraphが実行されているときにのみアクセス可能になります。

// RunnableGraph[ActorRef] means that you get ActorRef when you run the graph
val rg1: RunnableGraph[ActorRef] = sunnySource.to(Sink.foreach(println))

// You get ActorRef instance as a materialized value
val actorRef1: ActorRef = rg1.run()

// Or even more correct way: to materialize both ActorRef and future to completion 
// of the stream, so that we know when we are done:

// RunnableGraph[(ActorRef, Future[Done])] means that you get Tuple
// (ActorRef, Future[Done]) when you run the graph
val rg2: RunnableGraph[(ActorRef, Future[Done])] =
  sunnySource.toMat(Sink.foreach(println))(Keep.both)

// You get both ActorRef and Future[Done] instances as materialized values
val (actorRef2, future) = rg2.run()

actorRef2 ! Weather("90210", 72.0, false)
actorRef2 ! Weather("02139", 32.0, true)
actorRef2 ! akka.actor.Status.Success("Done!") // Complete the stream
future onComplete { /* ... */ }
7
Dmytro Mantula