Object/Trait

io.scalajs.nodejs.child_process

ChildProcess

Related Docs: trait ChildProcess | package child_process

Permalink

object ChildProcess extends Object with ChildProcess

ChildProcess Singleton

Annotations
@native() @JSImport( "child_process" , JSImport.Namespace )
Linear Supertypes
ChildProcess, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ChildProcess
  2. ChildProcess
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def exec(command: String, options: |[ExecOptions, RawOptions], callback: Function3[Error, |[Buffer, String], |[Buffer, String], Any]): ChildProcess.this.type

    Permalink

    Spawns a shell then executes the command within that shell, buffering any generated output.

    Spawns a shell then executes the command within that shell, buffering any generated output.

    command

    <String> The command to run, with space-separated arguments

    options

    the execution options

    callback

    called with the output when process terminates

    returns

    the ChildProcess

    Definition Classes
    ChildProcess
    Example:
    1. child_process.exec(command[, options][, callback])
  9. def exec(command: String, callback: Function3[Error, |[Buffer, String], |[Buffer, String], Any]): ChildProcess.this.type

    Permalink

    Spawns a shell then executes the command within that shell, buffering any generated output.

    Spawns a shell then executes the command within that shell, buffering any generated output.

    command

    <String> The command to run, with space-separated arguments

    callback

    called with the output when process terminates

    returns

    the ChildProcess

    Definition Classes
    ChildProcess
    Example:
    1. child_process.exec(command[, options][, callback])
  10. def exec(command: String, options: |[ExecOptions, RawOptions]): ChildProcess.this.type

    Permalink

    Spawns a shell then executes the command within that shell, buffering any generated output.

    Spawns a shell then executes the command within that shell, buffering any generated output.

    command

    <String> The command to run, with space-separated arguments

    options

    the execution options

    returns

    the ChildProcess

    Definition Classes
    ChildProcess
    Example:
    1. child_process.exec(command[, options][, callback])
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def fork(modulePath: String, args: Array[String] = js.native, options: |[ForkOptions, RawOptions] = js.native): ChildProcess.this.type

    Permalink

    The child_process.fork() method is a special case of child_process.spawn() used specifically to spawn new Node.js processes.

    The child_process.fork() method is a special case of child_process.spawn() used specifically to spawn new Node.js processes. Like child_process.spawn(), a ChildProcess object is returned. The returned ChildProcess will have an additional communication channel built-in that allows messages to be passed back and forth between the parent and child. See child.send() for details.

    It is important to keep in mind that spawned Node.js child processes are independent of the parent with exception of the IPC communication channel that is established between the two. Each process has its own memory, with their own V8 instances. Because of the additional resource allocations required, spawning a large number of child Node.js processes is not recommended.

    By default, child_process.fork() will spawn new Node.js instances using the process.execPath of the parent process. The execPath property in the options object allows for an alternative execution path to be used.

    Node.js processes launched with a custom execPath will communicate with the parent process using the file descriptor (fd) identified using the environment variable NODE_CHANNEL_FD on the child process. The input and output on this fd is expected to be line delimited JSON objects.

    Note: Unlike the fork(2) POSIX system call, child_process.fork() does not clone the current process.

    modulePath

    <String> The module to run in the child

    args

    <Array> List of string arguments

    options

    the fork options

    returns

    the ChildProcess

    Definition Classes
    ChildProcess
    Example:
    1. child_process.fork(modulePath[, args][, options])
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  22. def spawn(command: String, args: Array[String] = js.native, options: |[SpawnOptions, RawOptions] = js.native): ChildProcess.this.type

    Permalink

    The child_process.spawn() method spawns a new process using the given command, with command line arguments in args.

    The child_process.spawn() method spawns a new process using the given command, with command line arguments in args. If omitted, args defaults to an empty array.

    command

    <String> The command to run

    args

    <Array> List of string arguments

    options

    the spawn options

    returns

    the ChildProcess

    Definition Classes
    ChildProcess
    Example:
    1. child_process.spawn(command[, args][, options])
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ChildProcess

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped