setShutdownWaitFor procedure
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
setShutdownWaitFor procedure
Sets a LOGICAL value indicating the
setting of the shutdown WAIT-FOR flag.
Syntax
|
Applies to
Session objects
Notes
- The
default behavior of deleteSession procedure is
to execute the ABL statement
WAIT-FOR PROCEDURE COMPLETE. TheWAIT-FORstatement in deleteSession procedure can cause an error if your application has an outstandingWAIT-FORcall. You can direct deleteSession procedure to skip theWAIT-FORcall, by calling setShutdownWaitFor procedure with a logical"NO"input parameter. - If you direct deleteSession procedure to
skip the
WAIT-FORcall, your application must issue a blocking-I/O statement to allow the adapter to process the shutdown message. - The default value for the shutdown
WAIT-FORflag isYES, which tells deleteSession procedure to execute the ABL statementWAIT-FOR PROCEDURE COMPLETE.