Package

io.scalajs.nodejs

cluster

Permalink

package cluster

cluster package object

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

Type Members

  1. trait Address extends Object

    Permalink

    Address

    Address

    Annotations
    @RawJSType() @native()
  2. trait Cluster extends Object with IEventEmitter

    Permalink

    A single instance of Node.js runs in a single thread.

    A single instance of Node.js runs in a single thread. To take advantage of multi-core systems the user will sometimes want to launch a cluster of Node.js processes to handle the load.

    The cluster module allows you to easily create child processes that all share server ports.

    Annotations
    @RawJSType() @native()
  3. implicit final class ClusterEvents extends AnyVal

    Permalink

    Cluster Events

  4. trait ClusterSettings extends Object

    Permalink

    Cluster Settings

    Cluster Settings

    Annotations
    @RawJSType() @native()
  5. type Message = Any

    Permalink
  6. trait Worker extends Object with IEventEmitter

    Permalink

    A Worker object contains all public information and method about a worker.

    A Worker object contains all public information and method about a worker. In the master it can be obtained using cluster.workers. In a worker it can be obtained using cluster.worker.

    Annotations
    @RawJSType() @native()
  7. implicit final class WorkerEvents extends AnyVal

    Permalink

    Worker Events and Extensions

Value Members

  1. object Cluster extends Object with Cluster

    Permalink

    Cluster Singleton

    Cluster Singleton

    Annotations
    @native() @JSImport( "cluster" , JSImport.Namespace )
  2. object ClusterSettings

    Permalink

    Cluster Settings Companion

Inherited from AnyRef

Inherited from Any

Ungrouped