Merge pull request #18081 from tdhd/sliding_stream

Sliding stream implementation
This commit is contained in:
drewhk 2015-08-17 10:12:35 +02:00
commit 0c6ed6d83d
8 changed files with 243 additions and 0 deletions

View file

@ -318,6 +318,7 @@ private[akka] object ActorProcessorFactory {
case MapAsync(p, f, _) (ActorInterpreter.props(settings, List(fusing.MapAsync(p, f, settings.supervisionDecider)), materializer, att), ())
case MapAsyncUnordered(p, f, _) (ActorInterpreter.props(settings, List(fusing.MapAsyncUnordered(p, f, settings.supervisionDecider)), materializer, att), ())
case Grouped(n, _) (ActorInterpreter.props(settings, List(fusing.Grouped(n)), materializer, att), ())
case Sliding(n, step, _) (ActorInterpreter.props(settings, List(fusing.Sliding(n, step)), materializer, att), ())
case Log(n, e, l, _) (ActorInterpreter.props(settings, List(fusing.Log(n, e, l)), materializer, att), ())
case GroupBy(f, _) (GroupByProcessorImpl.props(settings, f), ())
case PrefixAndTail(n, _) (PrefixAndTailImpl.props(settings, n), ())