GLib.IOChannel.unix_new

function unix_new(fd: Number(gint)): GLib.IOChannel {
    // Gjs wrapper for g_io_channel_unix_new()
}
  

Creates a new GLib.IOChannel given a file descriptor. On UNIX systems this works for plain files, pipes, and sockets.

The returned GLib.IOChannel has a reference count of 1.

The default encoding for GLib.IOChannel is UTF-8. If your application is reading output from a command using via pipe, you may need to set the encoding to the encoding of the current locale (see GLib.get_charset) with the GLib.IOChannel.prototype.set_encoding function.

If you want to read raw binary data without interpretation, then call the GLib.IOChannel.prototype.set_encoding function with null for the encoding argument.

This function is available in GLib on Windows, too, but you should avoid using it on Windows. The domain of file descriptors and sockets overlap. There is no way for GLib to know which one you mean in case the argument you pass to this function happens to be both a valid file descriptor and socket. If that happens a warning is issued, and GLib assumes that it is the file descriptor you mean.

fd

a file descriptor.

Returns

a new GLib.IOChannel.