fs.close()

fs.close(fd, callback) Asynchronous close(2). No arguments other than a possible exception are given to the completion callback.

punycode.ucs2

punycode.ucs2

writable.end()

Stability: 2 - Stable A stream is an abstract interface implemented by various objects in Node.js. For example a request to an HTTP server is a stream, as is process.stdout. Streams are readable, writable, or both. All streams are instances of EventEmitter. You can load the Stream base classes by doing require('stream'). There are base classes provided for Readable streams, Writable streams, Duplex streams, and Transform streams. This document is split up into 3 sections: The first section e

transform._flush()

Stability: 2 - Stable A stream is an abstract interface implemented by various objects in Node.js. For example a request to an HTTP server is a stream, as is process.stdout. Streams are readable, writable, or both. All streams are instances of EventEmitter. You can load the Stream base classes by doing require('stream'). There are base classes provided for Readable streams, Writable streams, Duplex streams, and Transform streams. This document is split up into 3 sections: The first section e

disconnect event (ChildProcess)

Event: 'disconnect' The 'disconnect' event is emitted after calling the ChildProcess.disconnect() method in the parent or child process. After disconnecting it is no longer possible to send or receive messages, and the ChildProcess.connected property is false.

eventemitter.setMaxListeners()

emitter.setMaxListeners(n) By default EventEmitters will print a warning if more than 10 listeners are added for a particular event. This is a useful default that helps finding memory leaks. Obviously, not all events should be limited to just 10 listeners. The emitter.setMaxListeners() method allows the limit to be modified for this specific EventEmitter instance. The value can be set to Infinity (or 0) for to indicate an unlimited number of listeners. Returns a reference to the EventEmitter s

fs.fsync()

fs.fsync(fd, callback) Asynchronous fsync(2). No arguments other than a possible exception are given to the completion callback.

message.rawTrailers

message.rawTrailers The raw request/response trailer keys and values exactly as they were received. Only populated at the 'end' event.

fs.closeSync()

fs.closeSync(fd) Synchronous close(2). Returns undefined.

buffer.readFloatBE()

buf.readFloatBE(offset[, noAssert])