com.ibm.bpe.api
Interface TimerBehavior


public interface TimerBehavior

This interface defines symbolic constants that state how to deal with timers. These constants are to be used when an activity instance is repeated - see forceRetry as an example.

Since:
7.0

Field Summary
static int CONTINUE_TIMER
          Symbolic constant to indicate that the timer period should continue when the activity is retried.
static java.lang.String COPYRIGHT
           
static int RESET_TIMER
          Symbolic constant to indicate that the timer is to be reset when the activity is retried.
static int SUPPRESS_TIMER
          Symbolic constant to indicate that the activity should not time out when retried.
 

Field Detail

COPYRIGHT

static final java.lang.String COPYRIGHT
See Also:
Constant Field Values

SUPPRESS_TIMER

static final int SUPPRESS_TIMER
Symbolic constant to indicate that the activity should not time out when retried.

See Also:
Constant Field Values

RESET_TIMER

static final int RESET_TIMER
Symbolic constant to indicate that the timer is to be reset when the activity is retried. Any active timer is cancelled, the timer expression is reevaluated, and a new timer is set up.

See Also:
Constant Field Values

CONTINUE_TIMER

static final int CONTINUE_TIMER
Symbolic constant to indicate that the timer period should continue when the activity is retried. If there is no active timer, the timer expression is evaluated and the timer is set up accordingly.

See Also:
Constant Field Values