ServerConsumer consumer = consumers.get(consumerID);
// this would be possible if the server consumer was closed by pings/pongs.. etc
if (consumer != null)
{
consumer.forceDelivery(sequence);
}
}
public void acknowledge(final long consumerID, final long messageID) throws Exception
{