blob: 8d87f9a0c7a27173aac6835a44b2e47bc822648d [file] [log] [blame]
package javax.sip;
import javax.sip.address.Hop;
import javax.sip.message.Request;
public interface ClientTransaction extends Transaction {
/**
* @deprecated
* For 2xx response, use {@link Dialog.createAck(long)}. The application
* should not need to handle non-2xx responses.
*/
Request createAck() throws SipException;
Request createCancel() throws SipException;
void sendRequest() throws SipException;
void alertIfStillInCallingStateBy(int count);
Hop getNextHop();
void setNotifyOnRetransmit(boolean notifyOnRetransmit);
}