make all arrows invertible

This commit is contained in:
Roland 2013-01-31 11:12:17 +01:00
parent 5e763bbb38
commit f86fa61613
6 changed files with 78 additions and 37 deletions

View file

@ -91,7 +91,7 @@ class ChannelDocSpec extends AkkaSpec {
channelA <-!- a // send a to channelA
a -!-> channelA // same thing as above
//channelA <-!- fA // eventually send the futures value to channelA
channelA <-!- fA // eventually send the futures value to channelA
fA -!-> channelA // same thing as above
// ask the actor; return type given in full for illustration
@ -100,7 +100,7 @@ class ChannelDocSpec extends AkkaSpec {
a -?-> channelA // same thing as above
//channelA <-?- fA // eventually ask the actor, return the future
channelA <-?- fA // eventually ask the actor, return the future
fA -?-> channelA // same thing as above
// chaining works as well