I have a thread that is polling data from web service and then sending it to different class to handle the data. The process of that data can takes a long time, sometimes more than the timer interval that invoking the polling function inside the thread.
I would like to protect this polling function, that is while the processing of the data is in progress, don't enter the function.
My flow is like this
workerThread -> start timer -> that invoking the polling method ->
the polling method gets the data and send it to processing > mean while this polling function can be called again .