Server
Since
v0.1.17
Constructors
Properties
Limit the amount of time the parser will wait to receive the complete HTTP headers.
The number of milliseconds of inactivity a server needs to wait for additional incoming data, after it has finished writing the last response, before a socket will be destroyed. If the server receives new data before the keep-alive timeout has fired, it will reset the regular inactivity timeout, i.e., server.timeout
.
Set this property to reject connections when the server's connection count gets high.
Limits maximum incoming headers count. If set to 0, no limit will be applied.
The maximum number of requests socket can handle before closing keep alive connection.
Sets the timeout value in milliseconds for receiving the entire request from the client.
Functions
Alias for emitter.on(eventName, listener)
.
events.EventEmitter
Stops the server from accepting new connections and keeps existing connections. This function is asynchronous, the server is finally closed when all connections are ended and the server emits a 'close'
event. The optional callback
will be called once the 'close'
event occurs. Unlike that event, it will be called with an Error
as its only argument if the server was not open when it was closed.
Closes all connections connected to this server.
Closes all connections connected to this server which are not sending a request or waiting for a response.
Synchronously calls each of the listeners registered for the event named eventName
, in the order they were registered, passing the supplied arguments to each.
Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or Symbol
s.
Asynchronously get the number of concurrent connections on the server. Works when sockets were sent to forks.
Returns the current max listener value for the EventEmitter
which is either set by emitter.setMaxListeners(n)
or defaults to {@link defaultMaxListeners}.
Start a server listening for connections. A net.Server
can be a TCP or an IPC
server depending on what it listens to.
Returns the number of listeners listening for the event named eventName
. If listener
is provided, it will return how many times the listener is found in the list of the listeners of the event.
Returns a copy of the array of listeners for the event named eventName
.
Alias for emitter.removeListener()
.
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.
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.
Adds a one-timelistener
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.
Returns a copy of the array of listeners for the event named eventName
, including any wrappers (such as those created by .once()
).
Removes all listeners, or those of the specified eventName
.
Removes the specified listener
from the listener array for the event named eventName
.
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. 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.
Sets the timeout value for sockets, and emits a 'timeout'
event on the Server object, passing the socket as an argument, if a timeout occurs.