!peq #19324 update persistence-query to stream 2.0.1

This commit is contained in:
Patrik Nordwall 2016-01-01 16:22:58 +01:00
parent b218b069bc
commit c015f22824
6 changed files with 23 additions and 21 deletions

View file

@ -8,7 +8,6 @@ import akka.actor._
import akka.persistence.{ Recovery, PersistentActor }
import akka.persistence.query._
import akka.stream.{ FlowShape, ActorMaterializer }
import akka.stream.scaladsl.FlowGraph
import akka.stream.scaladsl.{ Flow, Sink, Source }
import akka.stream.javadsl
import akka.testkit.AkkaSpec
@ -153,7 +152,7 @@ object PersistenceQueryDocSpec {
.map(envelope => envelope.event)
.map(convertToReadSideTypes) // convert to datatype
.grouped(20) // batch inserts into groups of 20
.runWith(Sink(dbBatchWriter)) // write batches to read-side database
.runWith(Sink.fromSubscriber(dbBatchWriter)) // write batches to read-side database
//#projection-into-different-store-rs
}