PipedOutputStream Constructors

Definition

Overloads

PipedOutputStream()

Creates a piped output stream that is not yet connected to a piped input stream.

PipedOutputStream(PipedInputStream)

Creates a piped output stream connected to the specified piped input stream.

PipedOutputStream(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

PipedOutputStream()

Creates a piped output stream that is not yet connected to a piped input stream.

[Android.Runtime.Register(".ctor", "()V", "")]
public PipedOutputStream ();
Attributes

Remarks

Creates a piped output stream that is not yet connected to a piped input stream. It must be connected to a piped input stream, either by the receiver or the sender, before being used.

Java documentation for java.io.PipedOutputStream.PipedOutputStream().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

PipedOutputStream(PipedInputStream)

Creates a piped output stream connected to the specified piped input stream.

[Android.Runtime.Register(".ctor", "(Ljava/io/PipedInputStream;)V", "")]
public PipedOutputStream (Java.IO.PipedInputStream? snk);
[<Android.Runtime.Register(".ctor", "(Ljava/io/PipedInputStream;)V", "")>]
new Java.IO.PipedOutputStream : Java.IO.PipedInputStream -> Java.IO.PipedOutputStream

Parameters

snk
PipedInputStream

The piped input stream to connect to.

Attributes

Exceptions

if this stream or target are already connected.

Remarks

Creates a piped output stream connected to the specified piped input stream. Data bytes written to this stream will then be available as input from snk.

Java documentation for java.io.PipedOutputStream.PipedOutputStream(java.io.PipedInputStream).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

PipedOutputStream(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected PipedOutputStream (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.IO.PipedOutputStream : nativeint * Android.Runtime.JniHandleOwnership -> Java.IO.PipedOutputStream

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to