(PECL stomp >= 0.1.0)
Stomp::ack -- stomp_ack — 确认消息的消费
面向对象风格(方法)
过程式风格
确认使用客户端确认从订阅中消费的消息。
示例 #1 面向对象风格
<?php
$queue = '/queue/foo';
$msg = 'bar';
/* 连接 */
try {
$stomp = new Stomp('tcp://localhost: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://localhost: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 本质上是异步的。同步通信可以通过添加收据标头来实现。这将导致方法在服务器确认收到消息之前或在读取超时到达之前不返回任何内容。