mqseries_back

(PECL mqseries >= 0.10.0)

mqseries_backMQSeries MQBACK

说明

mqseries_back(资源 $hconn, 资源 &$compCode, 资源 &$reason):

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() 将不起作用。

参见

添加注释

用户贡献注释

此页没有用户贡献的注释。
To Top