com.ibm.bpe.api

Interface TimerBehavior


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

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

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

SUPPRESS_TIMER

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

RESET_TIMER

  1. 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:

CONTINUE_TIMER

  1. 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: