Allows running an inner route using an alternative MaterializerMaterializer in place of the default one.
The materializer can be extracted in an inner route using extractMaterializer directly, or used by directives which internally extract the materializer without surfacing this fact in the API (e.g. responding with a Chunked entity).
sourceval special =Materializer(system).withNamePrefix("special")def sample()=
path("sample"){
extractMaterializer { mat =>
complete {// explicitly use the materializer:Source.single(s"Materialized by ${mat.##}!").runWith(Sink.head)(mat)}}}
val route =
pathPrefix("special"){
withMaterializer(special){
sample()// `special` materializer will be used}}~ sample()// default materializer will be used// tests:Get("/sample")~> route ~> check {
responseAs[String] shouldEqual s"Materialized by ${SystemMaterializer(system).materializer.##}!"}Get("/special/sample")~> route ~> check {
responseAs[String] shouldEqual s"Materialized by ${special.##}!"}
sourceimport static akka.http.javadsl.server.Directives.withMaterializer;finalActorMaterializerSettings settings =ActorMaterializerSettings.create(system());finalActorMaterializer special =ActorMaterializer.create(settings, system(),"special");finalRoute sample = path("sample",()->
extractMaterializer(mat ->
onSuccess(()->// explicitly use the materializer:Source.single("Materialized by "+ mat.hashCode()+"!").runWith(Sink.head(), mat),Directives::complete
)));finalRoute route =Directives.concat(
pathPrefix("special",()->
withMaterializer(special,()-> sample)// `special` materializer will be used),
sample // default materializer will be used);// tests:
testRoute(route).run(HttpRequest.GET("/sample")).assertEntity("Materialized by "+ materializer().hashCode()+"!");
testRoute(route).run(HttpRequest.GET("/special/sample")).assertEntity("Materialized by "+ special.hashCode()+"!");