pekko/akka-docs/rst/scala/http/routing-dsl/directives/basic-directives/withMaterializer.rst
2016-01-14 00:31:03 +01:00

25 lines
741 B
ReStructuredText

.. _-withMaterializer-:
withMaterializer
================
Signature
---------
.. includecode2:: /../../akka-http/src/main/scala/akka/http/scaladsl/server/directives/BasicDirectives.scala
:snippet: withMaterializer
Description
-----------
Allows running an inner route using an alternative ``Materializer`` in place of the default one.
The materializer can be extracted in an inner route using :ref:`-extractMaterializer-` directly,
or used by directives which internally extract the materializer without sufracing this fact in the API
(e.g. responding with a Chunked entity).
Example
-------
.. includecode2:: ../../../../code/docs/http/scaladsl/server/directives/BasicDirectivesExamplesSpec.scala
:snippet: withMaterializer-0