TimedProcessor – A slightly fancier timer
Timers are pretty useful. They allow you to define a block of code that will execute on a given interval. It’s the C# version of JavaScript’s setInterval. There’s a lot of different reasons for using a timer, such as persisting updates to a database. Since database calls can be slow, maybe you want to build … [Read more…]