I have some flex clients that need to be notified of changes that take
place outside of any Flex client LCDS applications (updates to my
database takes place independent of the clients).I'm able to listen for
a CollectionChangeEvent on the managed collection that my
AbstractAssembler populates, and iterate over the PropertyChangeEvents
to get just the changes made since my last data refresh when I call
refreshCollection() from the client, but I don't get that same change
set (I end up just getti...