package com.ubermq.jms.common.datagram.control;
import com.ubermq.jms.common.datagram.IControlDatagram;
/**
* This command requests that the server send all unacknowledged messages
* to the current connection, for the specified Durable Subscription.
*/
public interface IDurableRecoverDatagram
extends ICommandSubGram
{
public String getSubscriptionName();
}
|