I\'m performing a database count through a server method. Users can select how they want the count to be performed and then invoke the method.
My problem is that the cou
Cancelling an already-made method call to server from client is not possible.
But if your method are called multiple times in a short interval, and you only care about the last call's result. You could use debounce to delay execution for some times. This will help reduce unnecessary calls to server.