Pipe.Open Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Opens a pipe.
[Android.Runtime.Register("open", "()Ljava/nio/channels/Pipe;", "")]
public static Java.Nio.Channels.Pipe? Open ();
[<Android.Runtime.Register("open", "()Ljava/nio/channels/Pipe;", "")>]
static member Open : unit -> Java.Nio.Channels.Pipe
Returns
A new pipe
- Attributes
Exceptions
if an I/O error occurs.
Remarks
Opens a pipe.
The new pipe is created by invoking the java.nio.channels.spi.SelectorProvider#openPipe openPipe
method of the system-wide default java.nio.channels.spi.SelectorProvider
object.
Java documentation for java.nio.channels.Pipe.open()
.
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.