February 2018
Intermediate to advanced
552 pages
13h 46m
English
Akka Toolkit has a Materializer SPI (Service Provider Interface) to support the Materialization component for Akka Stream-based Graphs:
package akka.stream
abstract class Materializer {
// SPI
}
If we want our own customized Materializer, we should provide the implementation to this abstract class. However, the Akka Streams API has provided a default implementation for running Akka Stream's Graph—ActorMaterializer:
Read now
Unlock full access