public class ActRelationshipCheckpoint extends Object
Modifier and Type | Field and Description |
---|---|
static Set<CS> |
ALL_VALUES
All values defined by this class.
|
static CS |
B
Condition is tested every time before execution of the service (WHILE
condition DO service).
|
static CS |
E
Condition is tested at the end of a repeated service execution.
|
static CS |
S
Condition is tested once before the service is executed (IF condition
THEN service).
|
static CS |
T
Condition must be true throughout the execution and the service is
interrupted (asynchronously) as soon as the condition turns false
(asynchronous WHILE loop).
|
static CS |
X
Condition is a loop checkpoint, which means that it is a step of an
activity plan and if this condition is negative, it causes the containing
loop to exit.
|
Constructor and Description |
---|
ActRelationshipCheckpoint() |
public static CS S
Condition is tested once before the service is executed (IF condition THEN service).
public static CS T
Condition must be true throughout the execution and the service is interrupted (asynchronously) as soon as the condition turns false (asynchronous WHILE loop). The service must be interruptible.
public static CS B
Condition is tested every time before execution of the service (WHILE condition DO service).
public static CS X
Condition is a loop checkpoint, which means that it is a step of an activity plan and if this condition is negative, it causes the containing loop to exit.
public static CS E
Condition is tested at the end of a repeated service execution. The service is repeated only if the condition is true (DO service WHILE condition).
HDR Glossary HDR Concept Lists HDR Exceptions HDR Programmer's Guide HDR Implementation Guide HDR Profile Options
Copyright © 2016, 2018, Oracle. All rights reserved