=str #15844 Use key labeled edges to support multiple edges between same vertices

This commit is contained in:
Patrik Nordwall 2014-09-11 07:43:05 +02:00
parent c385d69573
commit 353640a6c1
2 changed files with 35 additions and 26 deletions

View file

@ -121,12 +121,7 @@ class FlowGraphCompileSpec extends AkkaSpec {
val merge = Merge[String]
import FlowGraphImplicits._
in1 ~> f1 ~> bcast ~> f2 ~> merge ~> f3 ~> out1
bcast ~> f4 ~> bcast2 ~> f5 ~> merge
bcast2 ~> f6 ~> out2
// FIXME the following is doesn't work because of edge equality
// in1 ~> f1 ~> bcast ~> f2 ~> merge ~> f3 ~> out1
// bcast ~> f4 ~> merge
bcast ~> f4 ~> merge
}.run()
}