INodeServer interface
Node.jsの net
モジュールのサーバーを表します。
このインターフェイスはフレームワークをサポートしており、コードに対して直接呼び出されるものではありません。
- Extends
プロパティ
constructor |
メソッド
close((err?: Error) => void) | |
listen(number, string, number, () => void) | |
listen(string, () => void) |
継承されたメソッド
プロパティの詳細
constructor
constructor: this
プロパティ値
this
メソッドの詳細
close((err?: Error) => void)
function close(callback?: (err?: Error) => void): this
パラメーター
- callback
-
(err?: Error) => void
戻り値
this
listen(number, string, number, () => void)
function listen(port?: number, hostname?: string, backlog?: number, listeningListener?: () => void): this
パラメーター
- port
-
number
- hostname
-
string
- backlog
-
number
- listeningListener
-
() => void
戻り値
this
listen(string, () => void)
function listen(path: string, listeningListener?: () => void): this
パラメーター
- path
-
string
- listeningListener
-
() => void
戻り値
this
継承済みメソッドの詳細
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 から継承