WAIT CONVID command
Ensures that accumulated data is transmitted on an APPC conversation. In Smalltalk, the parameters of the WAIT CONVID command are contained in two classes: CICSAppcwait and CICSAppcwaitResult.
See CICS Application Programming Reference for the syntax of the command and a description of the parameters.
Defined instance methods
Parameters supplied to CICS in CICSAppcwait
| | | | |
CONVID(name) | convid: | Input | Fixed(4) | |
Parameters returned by CICS in CICSAppcwaitResult
| | | | |
RESP | resp | Output | Fixed(2) | Inherited from CICSResult. |
RESP2 | resp2 | Output | Fixed(2) | Inherited from CICSResult. |
STATE(cvda) | state | Output | Binary 32 | |
Example
Waits for APPC to send data.
| result |
result := CICS appcwait
convid: 'CON1';
exec.
Last modified date: 07/09/2019