Appendix B. CICS Smalltalk classes : DELAY command

DELAY command
Delays the processing of a task. In Smalltalk, the parameters of the DELAY command are contained in two classes: CICSDelay and CICSDelayResult.
See CICS Application Programming Reference for the syntax of the command and a description of its parameters.
Defined instance methods
Parameters supplied to CICS in CICSDelay
 
Parameters returned by CICS in CICSDelayResult
 
Inherited from CICSResult.
Inherited from CICSResult.
Example
Delays the CICS task for 3 minutes and 15 seconds.
| result |
result := CICS delay for;
minutes: 3;
seconds: 15;
exec.