My scenario. A page of my WP8 Silverlight app contains a ListBox control with the ability of item multiselection. When the user tap an item to toggle its selection state, I should perform a long operation for all items which are selected by that moment (for example, run a query to filter by the currently selected items). The user can tap some items very quickly, and there is no need to run the query every time after each tap (especially taking into account the fact that the query can take 1-2 seconds). I need to run the query if the user does nothing say for 1 or 2 seconds.
What is the best, not resource consuming, way to implement in WP8? Perhaps, the platform provides us with a useful service for that?