Releases: wintoncode/Winton.Extensions.Threading.Actor
Releases · wintoncode/Winton.Extensions.Threading.Actor
1.10.0
1.9.0
1.8.0
1.7.0
1.6.0
Version 1.5.0
Internal changes only to improve performance when multiple work items are queued up.
Version 1.4.0
This release incorporates a simplification of the codebase with the aim of improving performance and eliminating long-standing bugs.
It also introduces explicit support for NET Standard 2.0.
Overall, the changes made have reduced locking and complexity, which, apart from anything, has made it easier to track down long-standing spurious test failures and bugs. Performance isn't monumentally better but confidence that things are working correctly has been increased somewhat.
In detail:
- Removed state machine in ActorImpl and merged ActorImpl into Actor;-
- Refined ActorTaskScheduler and the way the kind of task being executed is communicated so that using async state is no longer necessary;
- Replaced use of Queue<> in ActorTaskScheduler with something that easily allows putting something at the front, which simplified some logic;
- Made use of pause/resume functionality in ActorTaskScheduler to simplify starting an Actor;
- Made locking in ActorTaskScheduler more fine-grained;
- Used UnsafeQueueUserWorkItem on platforms that support it.
Version 1.3.1
Bug fix release.
Version 1.3.0
Added a means of awaiting on an actor stopping via IActor.StoppedTask.
Version 1.2.0
A minor release incorporating an improvement to the way that pause/resume worked.