ThreadSafetyLevel¶
Namespace: ThinkGeo.Core
Indicates whether a layer implementation is safe to access from multiple threads.
public enum ThreadSafetyLevel
Inheritance object → ValueType → Enum → ThreadSafetyLevel
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields¶
| Name | Value | Description |
|---|---|---|
| Unsafe | 0 | Calls must be marshaled to a single thread. |
| Safe | 1 | The layer can be used concurrently from multiple threads. |