+str: Implement PrefixAndTail as a GraphStage

This commit is contained in:
Endre Sándor Varga 2015-12-15 12:40:31 +01:00
parent 72e3dc84de
commit a5d29f2459
10 changed files with 281 additions and 109 deletions

View file

@ -277,7 +277,6 @@ private[akka] object ActorProcessorFactory {
val settings = materializer.effectiveSettings(att)
op match {
case GroupBy(maxSubstreams, f, _) (GroupByProcessorImpl.props(settings, maxSubstreams, f), ())
case PrefixAndTail(n, _) (PrefixAndTailImpl.props(settings, n), ())
case Split(d, _) (SplitWhereProcessorImpl.props(settings, d), ())
case DirectProcessor(p, m) throw new AssertionError("DirectProcessor cannot end up in ActorProcessorFactory")
}