Click or drag to resize

Locking Class

Enumeration of blocking techniques.
Inheritance Hierarchy
SystemEnum
  com.espertech.esper.common.client.utilLocking

Namespace:  com.espertech.esper.common.client.util
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public sealed class Locking : Enum

The Locking type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberSPIN
Spin lock blocking is good for locks held very shortly or generally uncontended locks and is therefore the default.
Public fieldStatic memberSUSPEND
Blocking that suspends a thread and notifies a thread to wake up can be more expensive then spin locks.
Public fieldvalue__
Top
See Also