Subject: | Receipts |
The STOMP protocol supports receipt headers, and while many of the
Net::Stomp functions let you specify arbitrary headers, a couple (ack
was the one I noticed) sort of ignore your headers. From other things
working, I'd expected $stomp->ack({frame => $frame, receipt =>
$whatever}) to work, and it didn't, and a peek at the source revealed
why. :)
It would be a Good Thing to have some kind of baked in support for
receipts built in, as well, but that's neither here nor there.
The work around for the time being is just to build your own
Net::Stomp::Frame with command => 'ACK'.