ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Process functions / Threads, semaphores, signals and mutex
  • Overview
  • Simple management of threads
  • Principle
  • WLanguage functions
  • Characteristics of a thread
  • Characteristics of threads
  • Extension attributes related to threads
  • Access to existing elements and HFSQL context
  • Recommendations for the processes performed by the thread
  • Forbidden processes
  • Processes of a WINDEV application
  • Exception process and threads
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Overview
At runtime, an application runs in a main thread.
At any time, this application can launch a secondary thread: this thread runs in parallel with the application. It corresponds to a local or global procedure of the application.
The secondary thread is run in parallel with the main application. This thread can be used for all background processing, such as IncomingData.
Remark: an efficient thread is a thread that waits for a specific event, e.g. a user action, the receipt of a phone call or email, and so on.
Simple management of threads

Principle

A secondary thread is created by ThreadExecute.
A secondary thread is automatically stopped when:
  • the procedure corresponding to the thread is ended,
  • the object that created the thread is closed.
To force the stop:
Caution: If a WLanguage function is running when a thread is stopped, the stop will only be effective after the function has been executed.

WLanguage functions

The following functions are used to manage threads:
ThreadCurrentReturns the name of the thread currently run.
ThreadEndEnds the execution of the current thread.
ThreadExecuteStarts the execution of a secondary thread.
ThreadModeChanges the management mode of threads.
ThreadPausePauses the current thread during the specified duration.
ThreadPriorityReturns or modifies the priority level of a thread.
ThreadRequestStopSends a stop request to a thread.
ThreadResumeResumes the execution of a thread that was interrupted by ThreadSuspend. Function not recommended.
ThreadStateReturns the current status of a thread.
ThreadStopStops a secondary thread. Function not recommended.
ThreadStopRequestedChecks if a stop request has been sent to the running thread.
ThreadSuspendTemporarily suspends the execution of the specified thread. Function not recommended.
ThreadWaitWaits for the end of the execution of the specified thread.

For more details, see Thread functions on all the functions used to manage threads.
Characteristics of a thread

Characteristics of threads

In WLanguage, a secondary thread can be associated with:
  • a procedure local to the current window,
  • a procedure global to the project,
  • a method of a class,
  • a global method of a class.
A secondary thread can be a secure thread. In this mode:
  • a compilation error will occur if the controls are accessed in the thread (or if the procedure uses the "UI" attribute).
  • an exception will be thrown:
    • if the thread accesses the controls at runtime,
    • if the ThreadStop function is called.
  • when the window that triggered the thread is closed, a request to stop the thread is generated (but the thread continues to run after the window is closed).
New in version 2025
Java Secure threads are now available.

Extension attributes related to threads

When declaring a procedure or a class method, you can use extension attributes to specify the characteristics of the thread:
<thread>Used to specify that the procedure will be run in a secondary thread.
This extension attribute is not compatible with <timer> and <main thread>.
<main thread>Used to specify that the procedure will be executed in the main thread.
This extension attribute is not compatible with <timer> and <thread>.
<main thread asynchronous>Indicates that the procedure will be executed in the main thread and that there is no need to wait for the end of the execution of this procedure.
This extension attribute is not compatible with <timer> and <thread>.
<secure thread>Used to specify that the procedure will be run in a secure secondary thread.
This extension attribute is not compatible with <timer>, <main thread> and <UI>.
New in version 2025
Java Secure threads are now available.
<light HFSQL context>Triggers the immediate copy of a part of the current HFSQL context.
Only the directories containing the data files in HFSQL Classic mode and/or the connections in HFSQL Client/Server mode are stored.

This extension attribute must be used with <thread>.
<full HFSQL context>Triggers the immediate copy of the current HFSQL context.
Recommended if the thread must take into account the current positions in the files and queries of caller context.

This extension attribute must be used with <thread>.

Note: It's also possible to use the code editor interface, via Automatic procedures.

Access to existing elements and HFSQL context

When creating a thread, all the existing declarations, objects, elements are common:
  • to the new secondary thread.
  • to the thread where the secondary thread was created (the main thread in most cases).
These threads can access variables, procedures, etc. All variables created after a thread has been started can only be accessed in the thread in which they were created.
Similarly, when creating a thread, the HFSQL context is automatically duplicated. Each thread handles a specific HFSQL context. The number of HFSQL contexts is equal to the number of threads currently run. The entire HFSQL context is copied (filter, search condition, etc.). The HFSQL context evolves independently in each thread.
This allows you, for example, to perform two different iterations on the same data file in two different threads.
Example:
  • A filter is created on the Customer data file.
  • ThreadExecute is called to create the CTX2 thread.
  • The Customer data file is filtered in each thread (main and CTX2). The filter will still be enabled in the CTX2 thread even if the filter is disabled in the main thread.
Special cases:
  • Assisted HFSQL error handling: If several threads are used on data files, it is advisable to customize HFSQL error handling so that the default windows are not displayed.. To do so, use HOnError to disable the automatic management of errors or to redirect the management of errors to a custom procedure (without displaying windows). For more details, see HFSQL error handling help.
  • Writes and assigns in a thread If writes or assignments are made in a thread, other threads do not share this information. Some inconsistencies may occur.
Example:
Code of Thread 1Code of Thread 2
a=i
a++
i=a
b=i
b++
i=b

These two threads share the variables but they do not manage the access to the common resources. If the thread 1 is run before the thread 2, i will be set to 1 instead of 2.
Note To share an assignment between several threads, it is necessary to use semaphores. For more details, see Managing the semaphores in the threads.
Recommendations for the processes performed by the thread

Forbidden processes

Please note: the following processes cannot be executed in threads:
  • opening windows with WLanguage functions such as Open, Use, Close, etc. A specific management mode must be implemented if some windows must be handled in threads (rare case). For more details, see Opening a window in a secondary thread.
  • managing events.
  • multitask.
  • managing timers.
Warning: it is forbidden to manipulate the UI (windows, fields, etc.) in a secondary thread.
When a secondary thread must interact with the user or update the UI, it must use a process started from the main thread. This process can correspond to:
  • a global procedure of the project or a local procedure (of a window, etc.) called by ExecuteMainThread,
  • the "Request for refreshing the display" event of a window run by RequestRefreshUI.

Processes of a WINDEV application

By default, WINDEV events (click code of a button, for example), procedures and class methods can only be run by a single thread at a given time.
To allow several threads to run these processes at the same time, you must:
  1. Change the default management mode of threads (ThreadMode).
  2. Manage critical sections and semaphores in the code of the application.
Java In Java, events (click code of a button, for example), procedures and class methods can be run by several threads at the same time. To prevent several threads from running the same code at the same time, critical sections or semaphores must be added to the code of the application.

Exception process and threads

If a general exception process is set in the project initialization code, it will be triggered if an exception occurs:
  • in the main thread,
  • in a secondary thread started by ThreadExecute.
However, if the secondary thread triggers an exception, it will not be possible to find out its origin with ExceptionInfo in the project code. To find out the origin of an exception in a secondary thread, the exception process must be included in the secondary thread.
Related Examples:
The threads Unit examples (WINDEV Mobile): The threads
[ + ] Using threads in an application:
- run a procedure in thread format
- stop a thread
- run a procedure that expects parameters in thread format
The threads Unit examples (WINDEV): The threads
[ + ] Using threads in an application:
- Run a procedure in thread format
- Stop a thread
- Run a procedure that expects parameters in thread format
The threads (pool) Unit examples (WINDEV): The threads (pool)
[ + ] Using threads:
- Running processes started in parallel
- Limiting the number of threads in execution at a given time
Reminder: A thread is a process running in parallel to the current application (main thread).
This allows you to run a task in background task for example (backup, ...).
Threads are very useful in the industry: supervisor, applications with real-time process check, and so on …
WD Using sockets Training (WINDEV): WD Using sockets
[ + ] This example presents the use of the "Socket" functions of WINDEV in Client/Server.
The following topics are presented in this example:
1/ How to connect to a socket
2/ How to accept a request for connection
3/ How to write or read on a socket
Summary of the example supplied with WINDEV:
This example presents the different functions for socket management supplied with WINDEV. To use this example, a first instance of the example must be started in "server" mode. Then, by specifying the name of the computer that will be used as server and a nickname, you can connect to this application in "client" mode. You now have the ability to send messages to all the connected users. In this example, a thread and a socket are associated with each connection.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/06/2024

Send a report | Local help