https://github.com/qfettes/highprecisioncallbacktimer
This is a high precision alternative to System.Threading.Timer for the .Net framework. Implemented in C#. This uses thread blocking and stopwatch to call a method on very precise intervals. Useful for real time applications.
https://github.com/qfettes/highprecisioncallbacktimer
Last synced: about 1 year ago
JSON representation
This is a high precision alternative to System.Threading.Timer for the .Net framework. Implemented in C#. This uses thread blocking and stopwatch to call a method on very precise intervals. Useful for real time applications.
- Host: GitHub
- URL: https://github.com/qfettes/highprecisioncallbacktimer
- Owner: qfettes
- Created: 2017-05-08T20:14:36.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T20:15:52.000Z (about 9 years ago)
- Last Synced: 2025-02-03T10:17:01.625Z (over 1 year ago)
- Language: C#
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HighPrecisionCallbackTimer
This is a high precision alternative to System.Threading.Timer for the .Net framework. Implemented in C#. This uses thread blocking and System.Diagnostics.Stopwatch to call a method on very precise intervals. Useful for real time applications.