Skip to main content

emit

method default.Duplex.prototype.emit
Jump to headingDuplex.prototype.emit(event: "close"): boolean

Parameters Jump to heading

Jump to headingevent: "close"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(
event: "data",
chunk: any,
): boolean

Parameters Jump to heading

Jump to headingevent: "data"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(event: "drain"): boolean

Parameters Jump to heading

Jump to headingevent: "drain"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(event: "end"): boolean

Parameters Jump to heading

Jump to headingevent: "end"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(
event: "error",
err: Error,
): boolean

Parameters Jump to heading

Jump to headingevent: "error"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(event: "finish"): boolean

Parameters Jump to heading

Jump to headingevent: "finish"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(event: "pause"): boolean

Parameters Jump to heading

Jump to headingevent: "pause"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(
event: "pipe",
src: Readable,
): boolean

Parameters Jump to heading

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(event: "readable"): boolean

Parameters Jump to heading

Jump to headingevent: "readable"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(event: "resume"): boolean

Parameters Jump to heading

Jump to headingevent: "resume"

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(
event: "unpipe",
src: Readable,
): boolean

Parameters Jump to heading

Return Type Jump to heading

boolean
Jump to headingDuplex.prototype.emit(
event: string | symbol,
...args: any[],
): boolean

Parameters Jump to heading

Jump to headingevent: string | symbol
Jump to heading<span>...args</span>: any[]

Return Type Jump to heading

boolean
Back to top