📄 sipclientconnection.java
字号:
package com.micromethod.sipstack.i;
import java.io.IOException;
public interface SipClientConnection extends SipConnection {
public abstract void initRequest(String s,
SipConnectionNotifier sipconnectionnotifier)
throws IllegalArgumentException, SipException;
public abstract void setRequestURI(String s) throws IllegalArgumentException,
SipException;
public abstract void initAck() throws SipException;
public abstract SipClientConnection initCancel() throws SipException;
public abstract boolean receive(long l) throws SipException, IOException;
public abstract void setListener(
SipClientConnectionListener sipclientconnectionlistener)
throws IOException;
public abstract int enableRefresh(SipRefreshListener siprefreshlistener)
throws SipException;
public abstract void setCredentials(String s, String s1, String s2)
throws SipException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -