Skip to content

NodeWorker.Options.TrackUnmanagedFds property

If this is set to true, then the Worker tracks raw file descriptors managed through fs.open() and fs.close(), and closes them when the Worker exits, similar to other resources like network sockets or file descriptors managed through the FileHandle API. This option is automatically inherited by all nested Workers. Default: true.

C#
public bool TrackUnmanagedFds { get; set; }

See Also

Released under the MIT license