我是akka-stream的新手并尝试使用该库作为客户端从远程TCP服务器套接字读取(并且仅读取)。
然而,由于没有处理传入的 ByteStrings ,我的尝试失败了。
既不:
Source.empty[ByteString]
.via(Tcp().outgoingConnection(address, port))
.to(Sink.foreach(println(_))).run()
也不:
val connection = Tcp().outgoingConnection(address, port)
val sink = Flow[ByteString]
.via(Framing.delimiter(
ByteString("\n"),
maximumFrameLength = 256,
allowTruncation = true))
.map(_.utf8String)
.to(Sink.foreach(println(_)))
connection.
runWith(Source.empty, sink)
作品。
流量未运行的原因是什么?所有提示都非常赞赏。
答案 0 :(得分:3)
您需要一个未完成且未生成任何数据的Source,例如Source.maybe。 请注意,它创建的Promise可用于终止流程。
Source.maybe[ByteString]
.via(Tcp().outgoingConnection(host, port))
.to(Sink.foreach(println(_))).run()
答案 1 :(得分:1)
正如@ViktorKlang所提到的,客户端上的空Source
导致了一个基本上不会运行流的问题。您可以将管道设置为仅使用一个空的ByteString
Source
而不是空的管道开始接收,如下例所示:
implicit val system = ActorSystem()
implicit val mater = ActorMaterializer()
val server = Tcp().bind("127.0.0.1", 2555)
server.runForeach{ conn =>
Source.tick(1 second, 1 second, "foo")
.map(f => ByteString(f))
.via(conn.flow)
.to(Sink.ignore).run
}
val clientFlow = Tcp().outgoingConnection(new InetSocketAddress("127.0.0.1", 2555))
clientFlow.runWith(Source(List(ByteString.empty)), Sink.foreach(bs => println("client received: " + bs.utf8String)))
如果这样做,那么您将根据服务器端创建的刻度源每秒开始从服务器接收数据。
答案 2 :(得分:0)
它没有被运行,因为它从来没有任何数据要处理:你有一个空流,所以它立即终止。