ThreadingServices.WithConcurrencyController Method |
Sets the ambient concurrency controller for the current thread. Until the returned AmbientConcurrencyControllerContext value is disposed,
thread-aware objects created in the current thread will be assigned to the given concurrency controller.
Namespace: PostSharp.Patterns.Threading
Assembly: PostSharp.Patterns.Threading (in PostSharp.Patterns.Threading.dll) Version: 6.10.10.0 (6.10.10.0)
C#
public static AmbientConcurrencyControllerContext WithConcurrencyController( IConcurrencyController concurrencyController )
Parameters
- concurrencyController
- Type: PostSharp.Patterns.Threading.IConcurrencyController
The ambient concurrency controller. Use the ConcurrencyControllerFactory class to create new concurrency controllers.
Return Value
Type: AmbientConcurrencyControllerContextA IDisposable value representing the ambient concurrency controller context.
This method can be used to optimize performance when creating a large tree of thread-aware objects that need to share the same concurrency controller.