DEQ
| COBOL |
Java |
| EXEC CICS DEQ |
ibmCics.deq |
Syntax
ibmCics.deq(new DeqOptions.Builder()
.resource(<Resource>)
[.length(<Length>)]
[.noHandle(true)]
.build());
Parameter(s)
<Resource>
The resource to dequeue.
<Length>
Optional length of the resource.
noHandle
Optional Boolean. If set to true, exceptions created by this command will be ignored.
Example(s)
| COBOL |
Java |
EXEC CICS
DEQ
RESOURCE(RESOURCE-ID)
LENGTH(4)
END-EXEC.
|
ibmCics.deq(new DeqOptions.Builder()
.resource(locDef.resource_Id)
.length(4)
.build());
|