Packages

package net

net package object

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. net
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Address extends Object

    Server IP Address

    Server IP Address

    Annotations
    @JSType() @native()
  2. type ConnectOptions = ConnectionOptions
  3. trait ListenerOptions extends Object
    Annotations
    @JSType()
  4. trait Net extends Object

    net - The net module provides you with an asynchronous network wrapper.

    net - The net module provides you with an asynchronous network wrapper. It contains functions for creating both servers and clients (called streams).

    Annotations
    @JSType() @native()
    See also

    https://nodejs.org/api/net.html

  5. class Server extends Object with IEventEmitter

    net.Server - This class is used to create a TCP or local server.

    net.Server - This class is used to create a TCP or local server.

    Annotations
    @JSType() @native() @JSImport("net", "Server")
    See also

    https://nodejs.org/api/net.html#net_class_net_server

  6. implicit final class ServerExtensions[T <: Server] extends AnyVal

    net.Server Events

  7. trait ServerOptions extends Object
    Annotations
    @JSType()
  8. class Socket extends Duplex with HasHandle

    net.Socket - This object is an abstraction of a TCP or local socket.

    net.Socket - This object is an abstraction of a TCP or local socket. net.Socket instances implement a duplex Stream interface. They can be created by the user and used as a client (with connect()) or they can be created by Node.js and passed to the user through the 'connection' event of a server.

    Annotations
    @JSType() @native() @JSImport("net", "Socket")
  9. implicit final class SocketExtensions[T <: Socket] extends AnyVal

    net.Socket Extensions

  10. trait SocketOptions extends Object
    Annotations
    @JSType()

Value Members

  1. object ListenerOptions
  2. object Net extends Object with Net

    Net Singleton

    Net Singleton

    Annotations
    @native() @JSImport("net", JSImport.Namespace)
  3. object ServerOptions
  4. object SocketOptions

Inherited from AnyRef

Inherited from Any

Ungrouped