Packages

package cluster

cluster package object

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

Type Members

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

    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

    Cluster Events

  4. trait ClusterSettings extends Object

    Cluster Settings

    Cluster Settings

    Annotations
    @RawJSType() @native()
  5. type Message = Any
  6. trait Worker extends Object with IEventEmitter

    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

    Worker Events and Extensions

Value Members

  1. object Cluster extends Object with Cluster

    Cluster Singleton

    Cluster Singleton

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

    Cluster Settings Companion

Inherited from AnyRef

Inherited from Any

Ungrouped