MQSERIES_CMIT(3) 1 MQSERIES_CMIT(3)
mqseries_cmit - MQSeries MQCMIT
SYNOPSIS
void mqseries_cmit (resource $hconn, resource &$compCode, resource &$reason)
DESCRIPTION
The mqseries_cmit(3) (MQCMIT) call indicates to the queue manager that the application has reached a syncpoint, and that all of the mes-
sage gets and puts that have occurred since the last syncpoint are to be made permanent. Messages put as part of a unit of work are made
available to other applications; messages retrieved as part of a unit of work are deleted.
PARAMETERS
o $hConn
-Connection handle.This handle represents the connection to the queue manager.
o $compCode
-Completion code.
o $reason
-Reason code qualifying the compCode.
RETURN VALUES
No value is returned.
EXAMPLES
Example #1
mqseries_cmit(3) example
<?php
mqseries_cmit($conn, $comp_code, $reason);
if ($comp_code !== MQSERIES_MQCC_OK) {
printf("cmit CompCode:%d Reason:%d Text:%s<br>
", $comp_code, $reason, mqseries_strerror($reason));
}
?>
NOTES
Note
mqseries_back(3) will not function when using MQSeries Client to connect to a Queueu Manager.
SEE ALSO
mqseries_begin(3), mqseries_back(3), mqseries_conn(3), mqseries_connx(3).
PHP Documentation Group MQSERIES_CMIT(3)