* FlowMaterializer is now the actor independent interface * ActorFlowMaterializer is the actor based interface * MaterializerSettings renamed to ActorFlowMaterializerSettings * impl.ActorBasedFlowMaterializer renamed to impl.ActorFlowMaterializerImpl * Optimizations included in ActorFlowMaterializerSettings * Note that http is using FlowMaterializer in api, but I suspect that it will currently only run with a ActorFlowMaterializer
13 lines
257 B
Scala
13 lines
257 B
Scala
package docs.stream.cookbook
|
|
|
|
import akka.stream.ActorFlowMaterializer
|
|
import akka.stream.testkit.AkkaSpec
|
|
|
|
trait RecipeSpec extends AkkaSpec {
|
|
|
|
implicit val m = ActorFlowMaterializer()
|
|
type Message = String
|
|
type Trigger = Unit
|
|
type Job = String
|
|
|
|
}
|