nusys.io

..
AsyncFile

This class provides methods for asynchronous operations on files instances. For synchronous operations, see nusys.io.File. To obtain an instance of this class, use the async field of nusys.io.File.

File

Class representing an open file. Some methods in this class are instance variants of the same methods in nusys.FileSystem.

FileInput

FileOutput

FileReadStream

FileReadStreamOptions

FileWriteStream

IpcMessage

A message sent over an IPC channel. Sent with Process.send to a sub-process or with CurrentProcess.send to the parent process. Received with Process.messageSignal from a sub-process, or CurrentProcess.messageSignal from the parent process.

IpcSerializer

Class used internally to send messages and handles over an IPC channel. See Process.spawn for creating an IPC channel and Process.send for sending messages over the channel.

IpcUnserializer

Class used internally to receive messages and handles over an IPC channel. See CurrentProcess.initIpc for initialising IPC for a process.