Click or drag to resize

wclMessageSynchronizationKind Enumeration

Message synchronization methods used for inter-threading synchronization and notification.

Namespace: wclCommon
Assembly: wclCommon (in wclCommon.dll) Version: 7.11.9.0 (7.11.9.0)
Syntax
public enum wclMessageSynchronizationKind
Members
Member nameValueDescription
skMessages0 Default synchronization method based on Windows Messages.
skThread1 Asynchronous notifications. All events fire in a separate thread. An application is responsible for the synchronization with UI thread. Must be used carefully.
skApc2 Asynchronous Procedure Call (APC) synchronization.
See Also