Trivial ScheduledThreadPoolExecutor in C#
Today we are going to implement trivial ScheduledExecutorService in C#. Introduction We want to have a thread pool of fixed size which we can use to execute three types of tasks: One time tasks Tasks with fixed delay between executions Tasks with fixed rate of executions Let’s go. Bookkeeping We start with the following: We … Continue reading Trivial ScheduledThreadPoolExecutor in C#