pekko/akka-docs/src/main/paradox/stream/operators/Sink/fromMaterializer.md

15 lines
673 B
Markdown
Raw Normal View History

2019-09-05 16:08:37 +02:00
# Sink.fromMaterializer
Defer the creation of a `Sink` until materialization and access `Materializer` and `Attributes`
@ref[Sink operators](../index.md#sink-operators)
## Signature
@apidoc[Sink.fromMaterializer](Sink$) { scala="#fromMaterializer[T,M](factory:(akka.stream.Materializer,akka.stream.Attributes)=>akka.stream.scaladsl.Sink[T,M]):akka.stream.scaladsl.Sink[T,scala.concurrent.Future[M]]" java="#fromMaterializer(java.util.function.BiFunction)" }
2019-09-05 16:08:37 +02:00
## Description
Typically used when access to materializer is needed to run a different stream during the construction of a sink.
Can also be used to access the underlying `ActorSystem` from `Materializer`.