April 15, 2016 by Christoff Truter
It is all about the separation of the common functionality that span over layers and tiers (e.g. logging, caching, security, validation, benchmarking etc), know as cross cutting concerns, which the various AOP frameworks attempt to achieve with little or no modification to existing source code.
C# Threading PostSharpDecember 18, 2012 by Christoff Truter
Unlike timers a worker runs in an isolated thread, which allows us to run intensive tasks without blocking the UI/parent thread.
JavaScript ThreadingDecember 18, 2012 by Christoff Truter
In the first part of this series we're going to have a look at timers (setTimeout and setInterval functions)
JavaScript ThreadingOctober 26, 2010 by Christoff Truter - 3 Comments
How to access WPF and Windows Forms controls from threads
C# ThreadingSeptember 18, 2010 by Christoff Truter - 1 Comment
How to restrict the number of threads that is allowed to access a pool of resources
C# Threading