|
Holumbus.Common.Threading | Portability | portable | Stability | experimental | Maintainer | Stefan Schmidt (stefanschmidt@web.de) |
|
|
|
Description |
Version : 0.1
Operations to start and stop threads which will not be killed when a regular
exception occurs. In this case, the thread will continue working. Such a
thread can only be killed by the stop-method. This whole thing is a wrapper
around the normal lightweight thread functions.
The created threads execute a function in an infinite loop. This is the
normal usecase for message dispatcher threads.
|
|
Synopsis |
|
|
|
Documentation |
|
|
The thread datatype
|
|
|
Creates a new thread object. The thread will not be running.
|
|
|
Sets the delay between two loop cycles. Default value: no delay.
|
|
|
Sets the action function, which will be executed in each cycle
|
|
|
Sets the error handler. It is activated, when the action function
will raise an exception.
|
|
|
Starts the thread.
|
|
|
Stops the thread. If the thread itself wants to stop from within the action
function, the current cycle will be executed till the end. So statements
after this function will still be executed.
|
|
Produced by Haddock version 2.4.2 |