mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 05:05:05 +00:00
Merge remote-tracking branch 'origin/ConnectPro_v1.1' into ConnectPro_v1.3
# Conflicts: # CHANGELOG.md # ICD.Common.Utils/Properties/AssemblyInfo.cs
This commit is contained in:
@@ -69,6 +69,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
- Better VC-4 support for IcdConsole
|
- Better VC-4 support for IcdConsole
|
||||||
- JSON refactoring for simpler deserialization
|
- JSON refactoring for simpler deserialization
|
||||||
|
|
||||||
|
## [8.6.1] - 2019-06-14
|
||||||
|
### Changed
|
||||||
|
- Fixed a bug where stopped timers on NetStandard would still have a periodic callback duration
|
||||||
|
|
||||||
## [8.6.0] - 2019-06-14
|
## [8.6.0] - 2019-06-14
|
||||||
### Changed
|
### Changed
|
||||||
- Overhaul of RangeAttribute remap methods to better avoid overflows
|
- Overhaul of RangeAttribute remap methods to better avoid overflows
|
||||||
|
|||||||
@@ -67,8 +67,8 @@ namespace ICD.Common.Utils.Timers
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static SafeTimer Stopped(Action callback)
|
public static SafeTimer Stopped(Action callback)
|
||||||
{
|
{
|
||||||
// Some arbitrarily large number that shouldn't timeout before we call stop.
|
//No due time or repeat period on a stopped timer
|
||||||
SafeTimer output = new SafeTimer(callback, 100 * 1000, 100 * 1000);
|
SafeTimer output = new SafeTimer(callback, -1, -1);
|
||||||
output.Stop();
|
output.Stop();
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user