Wait

Operation name

Wait

Function overview

Waits for the specified time.

Properties

= Remarks =

For details on use of variables, refer to Variables.

Basic settings

Item name

Required/Optional

Use of variables

Description

Remarks

Name

Required

Not available

Enter a name that is used on the script canvas.

 

Required settings

Item name

Required/Optional

Use of variables

Description

Remarks

h

Optional

Available

Enter the number of hours to wait.

  • Allowed values are from 0 to 500.

  • The default value is 0.

m

Optional

Available

Enter the number of minutes to wait.

  • Allowed values are from 0 to 59.

  • The default value is 0.

s

Optional

Available

Enter the number of seconds to wait.

  • Allowed values are from 0 to 59.

  • The default value is 0.

ms

Optional

Available

Enter the number of milliseconds to wait.

  • Allowed values are from 0 to 999.

  • The default value is 0.

Comment

Item name

Required/Optional

Use of variables

Description

Remarks

Comment

Optional

Not available

You can write a short description of this connector.

 

Parallel Stream Processing

PSP isn't supported.

Available component variables

Component variable name

Description

Remarks

message_category

When an error occurs, the category of the message code corresponding to the error is stored.

  • The default value is null.

message_code

When an error occurs, the code of the message code corresponding to the error is stored.

  • The default value is null.

message_level

When an error occurs, the severity of the message code corresponding to the error is stored.

  • The default value is null.

error_type

When an error occurs, the error type is stored.

  • The default value is null.

  • The format of the error type is as follows.

    Example: java.io.FileNotFoundException

error_message

When an error occurs, the error message is stored.

  • The default value is null.

error_trace

When an error occurs, the trace information for the error is stored.

  • The default value is null.

Specification limits

  • When wait time is specified with variable, maximum value error check won't be performed.

    Example: When the wait time is entered as ${sec} seconds, and the value of the variable sec is 90, the operation waits for 1 minute 30 seconds.

    Example: When the wait time is entered as 1 minute ${sec} seconds, and the value of the variable sec is 90, the operation waits for 2 minutes 30 seconds.

  • If the wait time after variable expansion exceeds 9223372036854775807 milliseconds (the maximum value of Java long type), the wait time overflows.

Exception messages

Exception name

Cause

Solution

java.lang.NumberFormatException

Non-numeric value is entered in h, m, s, or ms.

Enter a numeric value in h, m, s, or ms.