=str #16923: Inject identity between SubscriberSource and PublisherSink

This commit is contained in:
Endre Sándor Varga 2015-06-06 14:36:49 +02:00 committed by Endre Sándor Varga
parent 632868b868
commit 74843eccaf
7 changed files with 41 additions and 21 deletions

View file

@ -111,6 +111,9 @@ private[akka] case class ActorFlowMaterializerImpl(
}
}
override protected def createIdentityProcessor: Processor[Any, Any] =
processorFor(Identity(OperationAttributes.none), OperationAttributes.none, settings)._1
private def processorFor(op: StageModule,
effectiveAttributes: OperationAttributes,
effectiveSettings: ActorFlowMaterializerSettings): (Processor[Any, Any], Any) = op match {