No description
* Not intended to close the ticket, but improve the situation somewhat
by defining default names of all sources and sinks.
* The stage names (actor names) are still rather weird
For example the following
Source.single(1).named("aa")
.map(identity).named("bb")
.map(identity).named("cc")
.runWith(Sink.publisher)
is materilaized with names:
flow-1-0-cc-bb-aa-singleSource : akka.stream.impl.PublisherSource@1787f2a0
flow-1-1-cc-bb-map : Map(<function1>,OperationAttributes(List(Name(map))))
flow-1-2-cc-map : Map(<function1>,OperationAttributes(List(Name(map))))
flow-1-3-publisherSink : PublisherSink
but that is out of scope for this commit
|
||
|---|---|---|
| akka-docs-dev | ||
| akka-http/src/main | ||
| akka-http-core/src | ||
| akka-http-testkit/src | ||
| akka-http-tests/src/test | ||
| akka-parsing/src/main | ||
| akka-stream/src/main | ||
| akka-stream-tck/src/test/scala/akka/stream/tck | ||
| akka-stream-testkit/src/test | ||
| akka-stream-tests/src/test | ||