Wait
Operation name
Wait
Function overview
Waits for the specified time.
Properties
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 to use 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.  | 
                                                                
                                                                    
  | 
                                                            
| 
                                                                     m  | 
                                                                
                                                                     Optional  | 
                                                                
                                                                     Available  | 
                                                                
                                                                     Enter the number of minutes to wait.  | 
                                                                
                                                                    
  | 
                                                            
| 
                                                                     s  | 
                                                                
                                                                     Optional  | 
                                                                
                                                                     Available  | 
                                                                
                                                                     Enter the number of seconds to wait.  | 
                                                                
                                                                    
  | 
                                                            
| 
                                                                     ms  | 
                                                                
                                                                     Optional  | 
                                                                
                                                                     Available  | 
                                                                
                                                                     Enter the number of milliseconds to wait.  | 
                                                                
                                                                    
  | 
                                                            
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.  | 
                                                            
                                                                
  | 
                                                        
| 
                                                                 message_code  | 
                                                            
                                                                 When an error occurs, the code of the message code corresponding to the error is stored.  | 
                                                            
                                                                
  | 
                                                        
| 
                                                                 message_level  | 
                                                            
                                                                 When an error occurs, the severity of the message code corresponding to the error is stored.  | 
                                                            
                                                                
  | 
                                                        
| 
                                                                 error_type  | 
                                                            
                                                                 When an error occurs, the error type is stored.  | 
                                                            
                                                                
  | 
                                                        
| 
                                                                 error_message  | 
                                                            
                                                                 When an error occurs, the error message is stored.  | 
                                                            
                                                                
  | 
                                                        
| 
                                                                 error_trace  | 
                                                            
                                                                 When an error occurs, the trace information for the error is stored.  | 
                                                            
                                                                
  | 
                                                        
- 
                                                        
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.