Rename FlowMaterializer to Materializer

This commit is contained in:
Endre Sándor Varga 2015-06-23 18:28:53 +02:00
parent dc7269e620
commit 7879a5521b
245 changed files with 860 additions and 860 deletions

View file

@ -1,12 +1,12 @@
package docs.stream
import akka.stream.{ OverflowStrategy, ActorFlowMaterializer }
import akka.stream.{ OverflowStrategy, ActorMaterializer }
import akka.stream.scaladsl._
import akka.stream.testkit.AkkaSpec
class GraphCyclesSpec extends AkkaSpec {
implicit val mat = ActorFlowMaterializer()
implicit val mat = ActorMaterializer()
"Cycle demonstration" must {
val source = Source(() => Iterator.from(0))