(PECL stomp >= 0.1.0)
Stomp::ack -- stomp_ack — 确认已消费消息
面向对象风格 (方法)
过程式风格
使用客户端确认来确认已从订阅中消费消息。
示例 #1 面向对象风格
<?php
$queue = '/queue/foo';
$msg = 'bar';
/* 连接 */
try {
$stomp = new Stomp('tcp://127.0.0.1:61613');
} catch(StompException $e) {
die('连接失败: ' . $e->getMessage());
}
/* 发送消息到队列 'foo' */
$stomp->send($queue, $msg);
/* 订阅来自队列 'foo' 的消息 */
$stomp->subscribe($queue);
/* 读取帧 */
$frame = $stomp->readFrame();
if ($frame->body === $msg) {
/* 确认已收到帧 */
$stomp->ack($frame);
}
/* 取消订阅 */
$stomp->unsubscribe($queue);
/* 关闭连接 */
unset($stomp);
?>
示例 #2 过程式风格
<?php
$queue = '/queue/foo';
$msg = 'bar';
/* 连接 */
$link = stomp_connect('ssl://127.0.0.1:61612');
/* 检查连接 */
if (!$link) {
die('连接失败: ' . stomp_connect_error());
}
/* 开始事务 */
stomp_begin($link, 't1');
/* 发送消息到队列 'foo' */
stomp_send($link, $queue, $msg, array('transaction' => 't1'));
/* 提交事务 */
stomp_commit($link, 't1');
/* 订阅来自队列 'foo' 的消息 */
stomp_subscribe($link, $queue);
/* 读取帧 */
$frame = stomp_read_frame($link);
if ($frame['body'] === $msg) {
/* 确认已收到帧 */
stomp_ack($link, $frame['headers']['message-id']);
}
/* 取消订阅 */
stomp_unsubscribe($link, $queue);
/* 关闭连接 */
stomp_close($link);
?>
注意:
可以指定事务标头,指示消息确认应成为命名事务的一部分。
Stomp 本质上是异步的。同步通信可以通过添加回执标头来实现。这将导致方法在服务器确认收到消息或达到读取超时之前不返回任何内容。