- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Chaining asynchronous operations
Fri, 2011-09-09, 07:08
Had a major breakthrough this morning. I've been asking AsyncFP
developers to code like this, which is a bit absurd:
simpleActor(Prnt(1)) {
rsp1 => {
simpleActor(Prnt(2)) {
rsp2 => {
simpleActor(Prnt(3)) {
rsp3 => {
simpleActor(Prnt("scadoo!"))(rf)
}
}
}
}
}
}
Yesterday I worked out how to chain simple operations:
val chain = new Chain
chain.add(simpleActor, Prnt(1))
chain.add(simpleActor, Prnt(2))
chain.add(simpleActor, Prnt(3))
chain.add(simpleActor, Prnt("scadoo!"))
Future(simpleActor, chain)
Now that helped a little, but to often you need the results of one
operation to define the next one:
simpleActor(UltimateAnswer()) {
rsp => {
simpleActor(Prnt(rsp))(rf)
}
}
This morning I extended Chain to handle this case:
val results = new Results
val chain = new Chain(results)
val simpleActor = new SimpleActor
chain.add(simpleActor, UltimateAnswer(), "ultimateAnswer")
chain.addFuncs(
Unit => simpleActor,
Unit => Prnt("The Ultimate Answer to Everything: " +
results.get("ultimateAnswer").asInstanceOf[Int])
)
OK, so using chains is not always the best answer, but when there are
a lot of operations to be performed, it can be a real God send.
Now I just need to go through all the IncDes examples and rework them
to use chaining, at least where it makes sense.
Bill
https://github.com/laforge49/Asynchronous-Functional-Programming/wiki