Hi all,
Thanks for taking time to read this question.
I am designing a 3-tier solution written in c# that needs to carry out processing every minute. The processing should be initiated at the same time from different unconnected parts of the program.
What's the best way to implement a system-wide timer? Should it be in the business logic layer or UI layer? What kind of timer is best, e.g. one from System.Forms of from System.Threading, or? Is there a rule of thumb for this situation?
Many thanks