I'm new to Scala Actors. What I plan to build is an application that has several cartridges that each do a specific http call and retrieve+persist some info periodically. Robustness is what matters the most. So far these are the ways I've thought of:
- Build the app around a TimerTask,
extend cartridges from Actor and
call their
.acts periodically (or should I send them messages instead? what's the difference?) - Extend from Actor and use Timeouts to periodically run them.
Can someone shed some light on the differences?