Top   Module   Use   Manual   Index 

com :: sun :: star :: task ::

constants group TaskType


Description
Attributes of an Tasks.


Constants

const long SYNCHRON = = 1;
Description
It is a sychron task. This means that the thread is suspended until the task should executed.
const long TRANSACTED = = 2;
Description
It is a transaction oriented task which can lock addition resources.
const long DEPENDENT = = 4;
Description
The task is not only depend on the execution sequence of the predecessor tasks. The predecessor tasks must end with the reason OK. Otherwise this task ist terminated. Most tasks have this attribute.
Top of Page