(PECL mqseries >= 0.10.0)
mqseries_back — MQSeries MQBACK
The mqseries_back() (MQBACK) call indicates to the queue manager that all the message gets and puts that have occurred since the last syncpoint are to be backed out. Messages put as part of a unit of work are deleted; messages retrieved as part of a unit of work are reinstated on the queue.
使用 mqseries_back() 仅与 mqseries_begin() 结合使用,并且仅在直接连接到队列管理器时才起作用。不通过 mqclient 接口。
hConn
连接句柄。
此句柄表示与队列管理器的连接。
compCode
完成代码。
reason
限定 compCode 的原因代码。
不返回值。
示例 #1 mqseries_back() 示例
<?php
mqseries_back($conn, $comp_code, $reason);
if ($comp_code !== MQSERIES_MQCC_OK) {
printf("CompCode:%d Reason:%d Text:%s<br>\n", $comp_code, $reason, mqseries_strerror($reason));
}
?>
注意:
使用 MQSeries Client 连接到队列管理器时,mqseries_back() 将不起作用。