我有一个客户端可以连接的WebSocket我也有一个使用akka-streams的数据流。如何使所有客户端获得相同的数据。目前他们似乎正在争夺数据。
由于
答案 0 :(得分:9)
你可以做的一种方法是让一个演员扩展ActorPublisher并让它订阅 一些消息。
class MyPublisher extends ActorPublisher[MyData]{
override def preStart = {
context.system.eventStream.subscribe(self, classOf[MyData])
}
override def receive: Receive = {
case msg: MyData ⇒
if (isActive && totalDemand > 0) {
// Pushes the message onto the stream
onNext(msg)
}
}
}
object MyPublisher {
def props(implicit ctx: ExecutionContext): Props = Props(new MyPublisher())
}
case class MyData(data:String)
然后,您可以将该actor用作流的源:
val dataSource = Source.actorPublisher[MyData](MyPublisher.props(someExcutionContext))
然后,您可以从该数据源创建流并应用转换以将数据转换为websocket消息
val myFlow = Flow.fromSinkAndSource(Sink.ignore, dataSource map {d => TextMessage.Strict(d.data)})
然后您可以在路线处理中使用该流程。
path("readings") {
handleWebsocketMessages(myFlow)
}
从原始流的处理开始,您可以将数据发布到事件流中,该actor的任何实例都会将其拾取并放入正在为其提供websocket的流中。
val actorSystem = ActorSystem("foo")
val otherSource = Source.fromIterator(() => List(MyData("a"), MyData("b")).iterator)
otherSource.runForeach { msg ⇒ actorSystem.eventStream.publish(MyData("data"))}
然后每个套接字都有自己的actor实例,为它提供所有来自单个源的数据。