pipe.eh

FIFO byte channels. More...

use "pipe.eh"

Types

type Pipe < StreamConnection;

Functions

def Pipe.new(): Pipe;

Description

Pipes are byte-transferring channels with two ends. Data written to the pipe output may then be read from the pipe input. Pipes can be used to create communication channels between processes.

Type details

type Pipe < StreamConnection;
A FIFO communication channel.

Function details

def Pipe.new(): Pipe;
Creates new pipe.