我正在實現一個HTTP資源的迭代器,我可以恢復分頁元素列表,我試圖用一個普通的Iterator做到這一點,但它是一個阻塞實現,並且因爲我是使用akka它使我的調度員有點瘋狂。 我會用akka-stream來實現相同的迭代器。問題是我需要不同的重試策略。 該服務返回一個由id標識的元素列表,有時當我查詢下一頁時,該服務返回當前頁面上的相同產品。 我現在的算法是這樣的。 var seenIds = S
的doc具有下面的例子(只什麼有關我的問題是所示): val resultSink = Sink.head[Int]
val g = RunnableGraph.fromGraph(GraphDSL.create(resultSink) { implicit b => sink =>
import GraphDSL.Implicits._
// importing the
如果我嘗試下載一個非常大的文件(超過100 MB)我得到這個錯誤: You can configure this by setting `akka.http.[server|client].parsing.max-content-length` or calling `HttpEntity.withSizeLimit` before materializing the dataBytes stre