TwclMessageSynchronizationKind Enumeration

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

Namespace: wclMessaging
type
 TwclMessageSynchronizationKind = (
 skMessages,
 skThread,
 skApc
 );

The TwclMessageSynchronizationKind type exposes the following members.

Show:
 NameDescription
skApc

Asynchronous Procedure Call (APC) synchronization.

skMessages

Default synchronization method based on Windows Messages.

skThread

Asynchronous notifications. All events fire in a separate thread. An application is responsible for the synchronization with UI thread. Must be used carefully.

Top