TCP Socket
An IO class that implements a general-purpose, bi-directional TCP connection.
This is not a TCP listener, see the Listener
IO class.
Constructor
TCP
Creates a new TCP
socket object instance.
Parameters
options
An object of properties used to construct the class.
port
- a number specifying the remote port to connect to. Optional if thefrom
property is set.
address
- A string with the IP address of the remote endpoint to connect to. Optional if thefrom
property is set.
noDelay
(optional) - A boolean indicating whether to disable Nagle’s algorithm on the socket. This is equivalent to theTCP_NODELAY
option in BSD sockets. Defaults to false.
keepAlive
(optional) - A number of milliseconds specifying the keep-alive interval of the socket. Defaults to disabling the keep-alive capability.
from
(optional) - An existingTCP
socket instance from which the native socket instance is taken to use with the newly created socket instance. Intended to be used with a TCPListener
. The original instance is closed as ownership of the native socket is tranferred to the new instance.
format
(optional) - a string that indicates the type of data used by the read method. Accepts"number"
or"buffer"
. Defaults to"buffer"
.
onReadable(bytes)
(optional): A callback function that is invoked when new data is available, which can be retrieved using theread
method. Thebytes
argument indicates the number of available bytes to be read.
onWriteable(bytes)
(optional): A callback function that is invoked when space has been made available to output additional data via thewrite
method. Thebytes
argument indicates the number of bytes that may be written without overflowing the output buffers.
onError()
(optional): A callback function that is invoked when an error occurs or the TCP socket disconnects. Once this callback is invoked, the connection is no longer usable.
Exceptions
If the constructor requires a resource that is already in use — whether by a script or the native host — an Error
exception is thrown.
Instance Properties
Includes properties of the IO Class Pattern
. Specific to this class:
format
Returns the value set by the format
property of the options object in the constructor, either "number"
or "buffer"
. Defaults to "buffer"
.
remoteAddress
A read-only property providing the IP address of the remote endpoint as a string. If the remote address is not available, returns undefined
.
remotePort
A read-only property providing the port number of the remote endpoint as a number. If the remote port is not available, returns undefined
.
Instance Methods
read
Returns data from the remote endpoint.
Parameters
byteLength
Accepted when the format
is a "buffer"
, the number of bytes to read into the returned Byte Buffer.
buffer
Accepted when the format
is a "buffer"
, a pre-allocated Byte Buffer for the instance to fill.
Return value
undefined
if no data is available.
If the format
is "number"
, returns the next available byte as a number (from 0 to 255).
If the format
is "buffer"
, returns Byte Buffer if byteLength
is defined, otherwise a number representing the amount of bytes read into the buffer
argument.
write
Transmits data to the remote endpoint.
Parameters
byteValue
Accepted when the format
is a "number"
, a byte value to send to the remote endpoint.
buffer
Accepted when the format
is a "buffer"
, a Byte Buffer of data to send to the remote endpoint.
Exceptions
If the output buffer cannot accept all the bytes to be written, an exception is thrown.
Examples
The class can be imported from the embedded
namespace:
GET it yet?
The example instantiates a TCP
socket to connect to an HTTP server, send a GET request, and logs the response.
Simple TCP Server
This example implements a simple HTTP echo server. It accepts incoming requests using a TCP Listener
instance and sends back the complete request (including the request headers) as the response body. The Echo
class reads the request and generates the response based on the TCP
Socket class.