You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/articles/features/threading.md
+78Lines changed: 78 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,3 +5,81 @@ title: Using the Threading package | MADE.NET
5
5
6
6
# Using the Threading package
7
7
8
+
## Modernizing System.Threading.Timer with the MADE.Threading.Timer
9
+
10
+
Setting up and managing a `System.Threading.Timer` can sometimes be cumbersome. How do you control the start and stop state?
11
+
12
+
The `MADE.Threading.Timer` is a modern take on `System.Threading.Timer` providing properties for configuring the `Interval` and `DueTime`, plus an event handler for `Tick`.
13
+
14
+
It also includes simple methods to `Start` and `Stop` the timer running.
15
+
16
+
Below is an example of using the `MADE.Threading.Timer` to setup and start running a timed job.
0 commit comments