/** * If a TCP is used as the transport protocol for the RTP session, * the output stream to which RTP packets will be written to must * be specified with this method. */ public void setOutputStream(Java.IO.OutputStream stream, byte channelIdentifier) { mOutputStream = stream; mChannelIdentifier = channelIdentifier; }
/// <summary> /// Create a stream that wraps a java <see cref="Java.Io.OutputStream"/>. /// </summary> public static Stream Wrap(JOutputStream source) { return new JavaOutputStreamWrapper(source); }
/// <summary> /// Create a stream that wraps a java <see cref="Java.Io.OutputStream"/>. /// </summary> public static Stream Wrap(JOutputStream source) { return(new JavaOutputStreamWrapper(source)); }