WritableStream interface
- Extends
プロパティ
writable |
メソッド
end(Buffer, Function) | |
end(Function) | |
end(string, Function) | |
end(string, string, Function) | |
write(Buffer | string, Function) | |
write(string, string, Function) |
継承されたメソッド
プロパティの詳細
writable
writable: boolean
プロパティ値
boolean
メソッドの詳細
end(Buffer, Function)
function end(buffer: Buffer, cb?: Function)
パラメーター
- buffer
-
Buffer
- cb
-
Function
end(Function)
function end(cb?: Function)
パラメーター
- cb
-
Function
end(string, Function)
function end(str: string, cb?: Function)
パラメーター
- str
-
string
- cb
-
Function
end(string, string, Function)
function end(str: string, encoding?: string, cb?: Function)
パラメーター
- str
-
string
- encoding
-
string
- cb
-
Function
write(Buffer | string, Function)
function write(buffer: Buffer | string, cb?: Function): boolean
パラメーター
- buffer
-
Buffer | string
- cb
-
Function
戻り値
boolean
write(string, string, Function)
function write(str: string, encoding?: string, cb?: Function): boolean
パラメーター
- str
-
string
- encoding
-
string
- cb
-
Function
戻り値
boolean
継承済みメソッドの詳細
addListener(string | symbol, (args: any[]) => void)
function addListener(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.addListener から継承
emit(string | symbol, any[])
function emit(event: string | symbol, args: any[]): boolean
パラメーター
- event
-
string | symbol
- args
-
any[]
戻り値
boolean
IEventEmitter.emit から継承
eventNames()
function eventNames(): Array<string | symbol>
戻り値
Array<string | symbol>
IEventEmitter.eventNames から継承
getMaxListeners()
function getMaxListeners(): number
戻り値
number
IEventEmitter.getMaxListeners
listenerCount(string | symbol)
function listenerCount(type: string | symbol): number
パラメーター
- type
-
string | symbol
戻り値
number
IEventEmitter.listenerCount
listeners(string | symbol)
function listeners(event: string | symbol): Function[]
パラメーター
- event
-
string | symbol
戻り値
Function[]
off(string | symbol, (args: any[]) => void)
function off(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.off
on(string | symbol, (args: any[]) => void)
function on(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.on から継承
once(string | symbol, (args: any[]) => void)
function once(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.once
prependListener(string | symbol, (args: any[]) => void)
function prependListener(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.prependListener
prependOnceListener(string | symbol, (args: any[]) => void)
function prependOnceListener(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.prependOnceListener から継承
rawListeners(string | symbol)
function rawListeners(event: string | symbol): Function[]
パラメーター
- event
-
string | symbol
戻り値
Function[]
IEventEmitter.rawListeners
removeAllListeners(string | symbol)
function removeAllListeners(event?: string | symbol): this
パラメーター
- event
-
string | symbol
戻り値
this
IEventEmitter.removeAllListeners
removeListener(string | symbol, (args: any[]) => void)
function removeListener(event: string | symbol, listener: (args: any[]) => void): this
パラメーター
- event
-
string | symbol
- listener
-
(args: any[]) => void
戻り値
this
IEventEmitter.removeListener
setMaxListeners(number)
function setMaxListeners(n: number): this
パラメーター
- n
-
number
戻り値
this
IEventEmitter.setMaxListeners から継承