I am using cairngorm on my current project and I have run into a couple issues which I am having trouble dealing with through Cairngorm. Hopefully someone can help.
1) I have an event loop which is polling my web service for events. Where would be the best place to run this event loop and what would be a good way of notifying the view to "do something"? There might be very little data, so it might be something like popping an alert or popping a toast notification...it's not something I can do through databinding and cairngorm seems to throw out the whole concept of the model notifying the view through events (this design decision is something I don't really understand). 2) I want to make a request, and show a loading indicator while the request is pending, and then show a confirmation with the result of hte request. Similar requests are being made in different parts of the application, but they all consist of making the request, showing a wait indicator, and then showing a confirmation. Again, some suggestions on how to handle this would be appreciated. Thanks

