add fail() method to stompqueuemanager

This commit is contained in:
Evan Prodromou 2009-07-01 12:10:11 -04:00
parent 557418bc1e
commit 2325d934a8
1 changed files with 11 additions and 0 deletions

View File

@ -126,6 +126,17 @@ class StompQueueManager
}
}
function fail($object, $queue)
{
$notice = $object;
// STOMP server will requeue it after a while anyways,
// so no need to notify. Just get it out of our little
// array
$this->_clearFrame($notice, $queue);
}
function _frameKey($notice, $queue)
{
return ((string)$notice->id) . '-' . $queue;