Instances of the readline.Interface
class are constructed using the readline.createInterface()
method.
See also:
Methods
The rl.close()
method closes the readline.Interface
instance and relinquishes control over the input
and
output
streams.
See also:
The rl.pause()
method pauses the input
stream, allowing it to be resumed later if necessary.
See also:
The rl.prompt()
method writes the readline.Interface
instances configured prompt
to a new line in output
in order to provide a user with a new location at which to provide input.
See also:
The rl.question()
method displays the query
by writing it to the output
, waits for user input
to be
provided on input, then invokes the callback
function passing the provided input as the first argument.
See also:
The rl.resume()
method resumes the input
stream if it has been paused.
See also:
The rl.setPrompt()
method sets the prompt that will be written to output
whenever rl.prompt()
is called.
See also:
The rl.write()
method write either data
or a key sequence identified by key
to the output
.
See also:
Inherited Variables
Inherited Methods
addListener<T>(eventName:Event<T>, listener:T):TSelf
Alias for emitter.on(eventName, listener)
.
See also:
Synchronously calls each of the listeners registered for the event named
eventName
, in the order they were registered, passing the supplied arguments
to each.
See also:
Returns an array listing the events for which the emitter has registered
listeners. The values in the array will be strings or Symbol
s.
See also:
Returns the number of listeners listening to the event named eventName
.
See also:
Returns a copy of the array of listeners for the event named eventName
.
See also:
off<T>(eventName:Event<T>, listener:T):TSelf
Alias for emitter.removeListener()
.
See also:
on<T>(eventName:Event<T>, listener:T):TSelf
Adds the listener
function to the end of the listeners array for the
event named eventName
. No checks are made to see if the listener
has
already been added. Multiple calls passing the same combination of eventName
and listener
will result in the listener
being added, and called, multiple
times.
See also:
once<T>(eventName:Event<T>, listener:T):TSelf
Adds a one-time listener
function for the event named eventName
. The
next time eventName
is triggered, this listener is removed and then invoked.
See also:
Adds the listener
function to the beginning of the listeners array for the
event named eventName
. No checks are made to see if the listener
has
already been added. Multiple calls passing the same combination of eventName
and listener
will result in the listener
being added, and called, multiple
times.
See also:
Adds a one-time listener
function for the event named eventName
to the
beginning of the listeners array. The next time eventName
is triggered, this
listener is removed, and then invoked.
See also:
Returns a copy of the array of listeners for the event named eventName
,
including any wrappers (such as those created by .once()
).
See also:
Removes all listeners, or those of the specified eventName
.
See also:
Removes the specified listener
from the listener array for the event named
eventName
.
See also:
By default EventEmitter
s 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
)
to indicate an unlimited number of listeners.
See also: