puremvc
|
|
« Reply #1 on: December 08, 2009, 02:25:36 » |
|
Well if you gather the data before passing it to the process, it doesn't matter how complex the data is, you've done a good thing by separating the gathering from the processing.
Your alternative is having the process know where to grab each piece of data.
It may sound like 'six of one / half a dozen of the other', but the nice thing about the separation of the gathering from the processing is that you could fabricate the data object to be passed into the process for testing. That proves the process works if you feed it good data, and eliminates the possibility that the proxies are introducing problems while you're tuning/troubleshooting the process itself.
-=Cliff>
|