Click or drag to resize

ManagedPixelMemoryLLLock Method

Subclasses of PixelMemory implement this method to lock the memory.

Namespace:  Atalasoft.Imaging.Memory
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
protected override void LLLock()
Remarks
LLLock is called by Lock only when it is necessary to actually lock the memory. Lock manages both thread safety as well as accumulation of locks. For any number of calls to Lock without a call to Unlock, there will be precisely one call to LLLock. It is also guaranteed that LLLock can only be called by one thread at a time.
See Also