I have to implement client server based app where client is windows app. Now, my plan is to create a webservice as a server app and use it in our client app. But the problem is in notification. For this, I need to add a timer to the client app to check for the notification. It slows down the client app.
What is the best approach to do this?
I need to create setup for both app. So, the solution must be deploy-able.
Edit: I can't put timer in background or seperate thread because I have to update datagridview immediately.