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
|
|
Syntax
const long SYNCHRON = 1;
Description
It is a sychron task. This means that the thread is suspended until the task should
executed.
Syntax
const long TRANSACTED = 2;
Description
It is a transaction oriented task which can lock addition resources.
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
Copyright 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, CA 94303 USA.