#19333 Added missing section in migration guide

This commit is contained in:
Endre Sándor Varga 2016-01-22 11:41:05 +01:00
parent 9ba5596103
commit e55efd819c

View file

@ -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
=================