Pipe
Named pipe support. For POSIX, a file backed UNIX socket. For Windows, a named pipe object.
Operations
IsOpen
Returns rather the pipe is open
method : public : IsOpen() ~ BoolReturn
| Type | Description |
|---|---|
| Bool | true if pipe is open, false otherwise |
New
Creates a new pipe or attaches to an existing one
New(name:String, mode:Pipe->Mode)Parameters
| Name | Type | Description |
|---|---|---|
| name | String | pipe path and name. For POSIX the base directory is /tmp/for Windows \\.\pipe\ |
| mode | Pipe->Mode | create or open pipe |
ReadBuffer
Reads bytes into a byte buffer
method : public : ReadBuffer(offset:Int, num:Int, buffer:Byte[]) ~ IntParameters
| Name | Type | Description |
|---|---|---|
| offset | Int | destination buffer offset |
| num | Int | number of values to read |
| buffer | Byte | input buffer |
Return
| Type | Description |
|---|---|
| Int | number of values read |
ReadBuffer
Reads bytes into a character buffer
method : public : ReadBuffer(offset:Int, num:Int, buffer:Char[]) ~ IntParameters
| Name | Type | Description |
|---|---|---|
| offset | Int | destination buffer offset |
| num | Int | number of values to read |
| buffer | Char | input buffer |
Return
| Type | Description |
|---|---|
| Int | number of values read |
ReadLine
Reads a string until a newline or character return is detected
method : public : ReadLine() ~ System.StringReturn
| Type | Description |
|---|---|
| String | character string |
WriteBuffer
Writes bytes from a buffer
method : public : WriteBuffer(offset:Int, num:Int, buffer:Byte[]) ~ IntParameters
| Name | Type | Description |
|---|---|---|
| offset | Int | destination buffer offset |
| num | Int | number of values to write |
| buffer | Byte | input buffer |
Return
| Type | Description |
|---|---|
| Int | number of values written |
WriteBuffer
Writes characters from a buffer
method : public : WriteBuffer(offset:Int, num:Int, buffer:Char[]) ~ IntParameters
| Name | Type | Description |
|---|---|---|
| offset | Int | destination buffer offset |
| num | Int | number of values to write |
| buffer | Char | input buffer |
Return
| Type | Description |
|---|---|
| Int | number of values written |
WriteByte
Writes a byte
method : public : WriteByte(b:Int) ~ BoolParameters
| Name | Type | Description |
|---|---|---|
| b | Int | byte to write |
Return
| Type | Description |
|---|---|
| Bool | true if byte was written, false otherwise |
WriteString
Writes a character string
method : public : WriteString(str:System.String) ~ NilParameters
| Name | Type | Description |
|---|---|---|
| str | String | string to be written |