I have a question about the way that this is put together. I had the
same question with flickr lib, so I I'm betting that I'm missing
something fundamental.... perhaps you could enlighten me?
Calls like Photo's...
public function get( subj_id:int = -1, aid:int = -1, pids:Array =
null ):void
...returns its result through event dispatch of the service.
If you do something like retrieve all the albums for a user then want
to pull all the photos for each album, you don't know what event goes
with what request... unless I should be making separate service
objects for the requests.... but I don't think that makes sense
either.
Do you think I'm crazy for wanting to know what events go with what
requests?
Should I be spawning multiple copies of services?
What is the right way to use the lib without modification?
For flickr lib, I ended up adding a result function parameter and
plumbing it all the way up to the surface. I immediately want to do
the same here. What am I missing?
-s