You can set the timer.date variable of a Waiting timer element to a relative time and date by binding it to a Date object. You define the Date object in a scripted function.

When the time on the given date arrives, the timer-based long-running workflow reactivates and continues its run. For example, you can set the workflow to reactivate at midday on February 12. Alternatively, you can create a workflow element that calculates and generates a relative Date object according to a function that you define. For example, you can create a relative Date object that adds 24 hours to the current time.

Prerequisites

  • Create a workflow.
  • Open the workflow for editing in the workflow editor.
  • Add some elements to the workflow schema.

Procedure

  1. Drag a Scriptable task element from the Generic menu in the left pane to the workflow schema, and place it before the element that requires the relative Date object for its timeout.date variable.
  2. Click the Scriptable task element.
  3. Enter a name and description for the scripted workflow element in the Details properties tab in the right pane.
  4. On the Inputs/Outputs properties tab, create a workflow variable.
    1. Name the variable timerDate.
    2. Select Date from the list of variable types.
    3. Leave the variable value text box blank. A scripted function provides this value.
    4. Click Create.
  5. Click the Scripting tab for the scripted workflow element.
  6. Define a function to calculate and generate a Date object named timerDate in the scripting pad in the Scripting tab.

    For example, you can create a Date object by implementing the following JavaScript function, in which the timeout period is a relative delay in milliseconds.

    timerDate = new Date();
    System.log( "Current date : '" + timerDate + "'" );
    timerDate.setTime( timerDate.getTime() + (86400 * 1000) );
    System.log( "Timer will expire at '" + timerDate + "'" );

    The preceding example JavaScript function defines a Date object that obtains the current date and time by using the getTime method and adds 86,400,000 milliseconds, or 24 hours. The Scriptable task element generates this value as its output parameter.

  7. Click Save and confirm your selection.

Results

You created a function that calculates and generates a Date object. A Waiting timer element can receive this Date object as an input parameter, to suspend a long-running workflow until the date encapsulated in this object. When the workflow arrives at the Waiting timer element, it suspends its run and waits for 24 hours before continuing.

What to do next

You must add a Waiting timer element to a workflow to implement a timer-based long-running workflow.