Exemplo n.º 1
0
 /**
  * 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;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create a stream that wraps a java <see cref="Java.Io.OutputStream"/>.
 /// </summary>
 public static Stream Wrap(JOutputStream source)
 {
     return new JavaOutputStreamWrapper(source);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Create a stream that wraps a java <see cref="Java.Io.OutputStream"/>.
 /// </summary>
 public static Stream Wrap(JOutputStream source)
 {
     return(new JavaOutputStreamWrapper(source));
 }