object ChildProcess extends Object with ChildProcess
ChildProcess Singleton
- Annotations
- @native() @JSImport( "child_process" , JSImport.Namespace )
- Alphabetic
- By Inheritance
- ChildProcess
- ChildProcess
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exec(command: String, options: |[ExecOptions, RawOptions], callback: Function3[Error, |[Buffer, String], |[Buffer, String], Any]): ChildProcess.this.type
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
child_process.exec(command[, options][, callback])
Example: -
def
exec(command: String, callback: Function3[Error, |[Buffer, String], |[Buffer, String], Any]): ChildProcess.this.type
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
child_process.exec(command[, options][, callback])
Example: -
def
exec(command: String, options: |[ExecOptions, RawOptions]): ChildProcess.this.type
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
child_process.exec(command[, options][, callback])
Example: -
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fork(modulePath: String, args: Array[String] = js.native, options: |[ForkOptions, RawOptions] = js.native): ChildProcess.this.type
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
child_process.fork(modulePath[, args][, options])
Example: -
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hasOwnProperty(v: String): Boolean
- Definition Classes
- Object
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isPrototypeOf(v: Object): Boolean
- Definition Classes
- Object
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
propertyIsEnumerable(v: String): Boolean
- Definition Classes
- Object
-
def
spawn(command: String, args: Array[String] = js.native, options: |[SpawnOptions, RawOptions] = js.native): ChildProcess.this.type
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
child_process.spawn(command[, args][, options])
Example: -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toLocaleString(): String
- Definition Classes
- Object
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
valueOf(): Any
- Definition Classes
- Object
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )