You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
582 B
24 lines
582 B
4 months ago
|
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);
|
||
|
}
|
||
|
|