The StreamConnector interface represents a pair of datagram sockets that a media stream could use for RTP and RTCP traffic.
The reason why this media service makes sockets visible through this StreamConnector is so that they could be shared among media and other libraries that may need to use them like an ICE implementation for example.
@author Emil Ivov
StreamConnector stdout_reader = new StreamConnector(process.getInputStream(), stdout!=null ? stdout : NullOutputStream.NULL_OUTPUT_STREAM);
stdout_reader.start();
ReaderWriterConnector stderr_reader = new ReaderWriterConnector(new InputStreamReader(process.getErrorStream()), new MessengerWriter(reporter, Messenger.LOG_DEBUG));
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.