summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-07-13 20:10:17 -0400
committerMichaƫl Zasso <targos@protonmail.com>2019-07-20 11:13:06 +0200
commitcaee9106acd54832b529ac7f8ce7d9a8da170a4e (patch)
treee2eba29f3f0bb20091065b02aaa75917bdf77ffc /doc
parent4a7e20ff81770916c38def86106f469d444a65d7 (diff)
downloadandroid-node-v8-caee9106acd54832b529ac7f8ce7d9a8da170a4e.tar.gz
android-node-v8-caee9106acd54832b529ac7f8ce7d9a8da170a4e.tar.bz2
android-node-v8-caee9106acd54832b529ac7f8ce7d9a8da170a4e.zip
readline: expose stream API in cursorTo()
This commit adds an optional callback to cursorTo(), which is passed to the stream's write() method. It also exposes the return value of write(). PR-URL: https://github.com/nodejs/node/pull/28674 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/readline.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/api/readline.md b/doc/api/readline.md
index 43314e136f..4ff572f2e5 100644
--- a/doc/api/readline.md
+++ b/doc/api/readline.md
@@ -487,14 +487,22 @@ function completer(linePartial, callback) {
}
```
-## readline.cursorTo(stream, x, y)
+## readline.cursorTo(stream, x, y[, callback])
<!-- YAML
added: v0.7.7
+changes:
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/28674
+ description: The stream's write() callback and return value are exposed.
-->
* `stream` {stream.Writable}
* `x` {number}
* `y` {number}
+* `callback` {Function} Invoked once the operation completes.
+* Returns: {boolean} `false` if `stream` wishes for the calling code to wait for
+ the `'drain'` event to be emitted before continuing to write additional data;
+ otherwise `true`.
The `readline.cursorTo()` method moves cursor to the specified position in a
given [TTY][] `stream`.