constants group TaskType in module com::sun::star::task::

(Global Index)

Syntax

constants group TaskType;

Description

Attributes of an Tasks.

Constants Summary

SYNCHRON It is a sychron task. This means that the thread is suspended until the task should executed.

TRANSACTED It is a transaction oriented task which can lock addition resources.

DEPENDENT 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.

Field Details



SYNCHRON

Syntax

const long  SYNCHRON = 1;

Description

It is a sychron task. This means that the thread is suspended until the task should executed.


TRANSACTED

Syntax

const long  TRANSACTED = 2;

Description

It is a transaction oriented task which can lock addition resources.


DEPENDENT

Syntax

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