📄 rtpconnector.java
字号:
package javax.media.rtp;import java.io.IOException;import javax.media.protocol.PushSourceStream;/** * Complete. * @author Ken Larson * */public interface RTPConnector{ public PushSourceStream getDataInputStream() throws IOException; public OutputDataStream getDataOutputStream() throws IOException; public PushSourceStream getControlInputStream() throws IOException; public OutputDataStream getControlOutputStream() throws IOException; public void close(); public void setReceiveBufferSize(int size) throws IOException; public int getReceiveBufferSize(); public void setSendBufferSize(int size) throws IOException; public int getSendBufferSize(); public double getRTCPBandwidthFraction(); public double getRTCPSenderBandwidthFraction();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -