enum abstract InterfaceEvent<T>(Event<T>)
package js.node.readline
to Event<T>
import js.node.readline.Interface
Enumeration of events emitted by the Interface
objects.
Variables
inlineread onlyClose:InterfaceEvent<() ‑> Void> = "close"
The 'close'
event is emitted when one of the following occur:
See also:
inlineread onlyLine:InterfaceEvent<String ‑> Void> = "line"
The 'line'
event is emitted whenever the input
stream receives an end-of-line input (\n
, \r
, or \r\n
).
See also:
inlineread onlyPause:InterfaceEvent<() ‑> Void> = "pause"
The 'pause'
event is emitted when one of the following occur:
See also:
inlineread onlyResume:InterfaceEvent<() ‑> Void> = "resume"
The 'resume'
event is emitted whenever the input
stream is resumed.
See also:
inlineread onlySIGCONT:InterfaceEvent<() ‑> Void> = "SIGCONT"
The 'SIGCONT'
event is emitted when a Node.js process previously moved into the background using <ctrl>-Z
(i.e. SIGTSTP
) is then brought back to the foreground using fg(1p)
.
See also:
inlineread onlySIGINT:InterfaceEvent<() ‑> Void> = "SIGINT"
The 'SIGINT'
event is emitted whenever the input
stream receives a <ctrl>-C
input, known typically as
SIGINT
.
See also:
inlineread onlySIGTSTP:InterfaceEvent<() ‑> Void> = "SIGTSTP"
The 'SIGTSTP'
event is emitted when the input
stream receives a <ctrl>-Z
input, typically known as
SIGTSTP
.
See also: