javax.media.rtp.RTPConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
The newest version!
package javax.media.rtp;
import java.io.*;
import javax.media.protocol.*;
/**
* Standard JMF class -- see this class in the JMF Javadoc. Complete.
*
* @author Ken Larson
*
*/
public interface RTPConnector
{
public void close();
public PushSourceStream getControlInputStream() throws IOException;
public OutputDataStream getControlOutputStream() throws IOException;
public PushSourceStream getDataInputStream() throws IOException;
public OutputDataStream getDataOutputStream() throws IOException;
public int getReceiveBufferSize();
public double getRTCPBandwidthFraction();
public double getRTCPSenderBandwidthFraction();
public int getSendBufferSize();
public void setReceiveBufferSize(int size) throws IOException;
public void setSendBufferSize(int size) throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy