From e55efd819c9024a302276536e1885bf72b5cf8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Endre=20S=C3=A1ndor=20Varga?= Date: Fri, 22 Jan 2016 11:41:05 +0100 Subject: [PATCH] #19333 Added missing section in migration guide --- .../rst/scala/stream/migration-guide-2.0-2.4-scala.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/akka-docs/rst/scala/stream/migration-guide-2.0-2.4-scala.rst b/akka-docs/rst/scala/stream/migration-guide-2.0-2.4-scala.rst index 9d7f4d5bd7..e7c56e3028 100644 --- a/akka-docs/rst/scala/stream/migration-guide-2.0-2.4-scala.rst +++ b/akka-docs/rst/scala/stream/migration-guide-2.0-2.4-scala.rst @@ -40,6 +40,14 @@ needs to be changed into:: These changes apply to all the places where streams are used, which means that signatures in the persistent query APIs also are affected. +Removed ImplicitMaterializer +============================ + +The helper trait :class:`ImplicitMaterializer` has been removed as it was hard to find and the feature was not worth +the extra trait. Defining an implicit materializer inside an enclosing actor can be done this way:: + + final implicit val materializer: ActorMaterializer = ActorMaterializer(ActorMaterializerSettings(context.system)) + Changed Operators =================