Home
last modified time | relevance | path

Searched refs:emitClose (Results 1 – 19 of 19) sorted by relevance

/third_party/node/test/parallel/
Dtest-fs-stream-destroy-emit-error.js22 const stream = fs.createReadStream(__filename, { emitClose: true }); property
29 { emitClose: true }); property
Dtest-file-write-stream4.js17 emitClose: true property
Dtest-http2-client-jsstream-destroy.js18 super({ emitClose: true }); property
Dtest-stream-finished.js260 emitClose: false, property
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Ddestroy.js62 if (self._writableState && !self._writableState.emitClose) return;
63 if (self._readableState && !self._readableState.emitClose) return;
/third_party/node/lib/internal/streams/
Ddestroy.js86 if ((w && w.emitClose) || (r && r.emitClose)) {
Dend-of-stream.js78 state.emitClose &&
Dwritable.js166 this.emitClose = !options || options.emitClose !== false;
Dreadable.js123 this.emitClose = !options || options.emitClose !== false;
/third_party/node/lib/internal/bootstrap/switches/
Dis_main_thread.js109 if (!this._writableState.emitClose) {
/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_writable.js178 …this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'finish' (and p…
D_stream_readable.js146 …this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'end' (and pote…
/third_party/node/doc/api/
Dstream.md233 description: Add `emitClose` option to specify if `'close'` is emitted on
242 created with the `emitClose` option.
396 event (unless `emitClose` is set to `false`). After this call, the writable
851 description: Add `emitClose` option to specify if `'close'` is emitted on
860 created with the `emitClose` option.
1030 event (unless `emitClose` is set to `false`). After this call, the readable
1613 unless `emitClose` is set in false.
1874 `autoDestroy` and `emitClose` options, do not allow the
1942 description: Add `emitClose` option to specify if `'close'` is emitted on
1964 * `emitClose` {boolean} Whether or not the stream should emit `'close'`
[all …]
Dfs.md1794 description: Change `emitClose` default to `true`.
1803 description: Enable `emitClose` option.
1829 * `emitClose` {boolean} **Default:** `true`
1858 destroyed, like most `Readable` streams. Set the `emitClose` option to
1907 description: Change `emitClose` default to `true`.
1916 description: Enable `emitClose` option.
1940 * `emitClose` {boolean} **Default:** `true`
1958 destroyed, like most `Writable` streams. Set the `emitClose` option to
/third_party/node/lib/internal/http2/
Dcore.js1049 function emitClose(self, error) { function
1090 emitClose(session, error);
1093 process.nextTick(emitClose, session, error);
/third_party/node/lib/
Dnet.js310 options.emitClose = false;
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md264 …/nodejs/node/commit/fc9c6c3227)] - **fs**: do not emit 'close' twice if emitClose enabled (Robert …
1978 …* Allow passing true to emitClose option (Giorgos Ntemiris) [#29212](https://github.com/nodejs/nod…
2019 …b.com/nodejs/node/commit/65de900052)] - **(SEMVER-MINOR)** **doc**: add emitClose option for fs st…
2029 …/commit/8f47ff16d4)] - **(SEMVER-MINOR)** **fs**: allow passing true to emitClose option (Giorgos …
2056 …com/nodejs/node/commit/1f88ca3424)] - **(SEMVER-MINOR)** **test**: add `emitClose: true` tests for…
DCHANGELOG_V13.md566 …/nodejs/node/commit/2c2b3ba39c)] - **fs**: do not emit 'close' twice if emitClose enabled (Robert …
DCHANGELOG_V14.md721 * [[`298a16a2e7`](https://github.com/nodejs/node/commit/298a16a2e7)] - **doc**: update emitClose de…