Windows Phone: Updating backend datastore (via web service) while keeping UI very responsive

Posted by will on Stack Overflow See other posts from Stack Overflow or by will
Published on 2010-06-06T20:50:55Z Indexed on 2010/06/06 20:52 UTC
Read the original article Hit count: 189

I am developing a Windows Phone app where users can update a list. Each update, delete, add etc need to be stored in a database that sits behind a web service. As well as ensuring all the operations made on the phone end up in the cloud, I need to make sure the app is really responsive and the user doesn’t feel any lag time whatsoever.

What’s the best design to use here? Each check box change, each text box edit fires a new thread to contact the web service? Locally store a list of things that need to be updated then send to the server in batch every so often (what about the back button)? Am I missing another even easier implementation?

Thanks in advance,

© Stack Overflow or respective owner

Related posts about web-services

Related posts about web-design