SocketServer.ts overview
Since v1.0.0
Exports Grouped by Category
errors
ErrorTypeId
Signature
declare const ErrorTypeId: unique symbol
Since v1.0.0
ErrorTypeId (type alias)
Signature
type ErrorTypeId = typeof ErrorTypeId
Since v1.0.0
SocketServerError (class)
Signature
declare class SocketServerError
Since v1.0.0
[ErrorTypeId] (property)
Signature
readonly [ErrorTypeId]: unique symbol
Since v1.0.0
models
Address (type alias)
Signature
type Address = UnixAddress | TcpAddress
Since v1.0.0
TcpAddress (interface)
Signature
export interface TcpAddress {
readonly _tag: "TcpAddress"
readonly hostname: string
readonly port: number
}
Since v1.0.0
UnixAddress (interface)
Signature
export interface UnixAddress {
readonly _tag: "UnixAddress"
readonly path: string
}
Since v1.0.0
tags
SocketServer (class)
Signature
declare class SocketServer
Since v1.0.0