⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtpconnector.java

📁 FMJ(freedom media for java)是java视频开发的新选择
💻 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 + -