Exemple #1
0
 /// <summary>
 /// This is a special case of the spawn() functionality for spawning Node processes. In addition to having all the methods in a normal ChildProcess instance, the returned object has a communication channel built-in. See child.send(message, [sendHandle]) for details.
 ///
 /// By default the spawned Node process will have the stdout, stderr associated with the parent's. To change this behavior set the silent property in the options object to true.
 ///
 /// The child process does not automatically exit once it's done, you need to call process.exit() explicitly. This limitation may be lifted in the future.
 ///
 /// These child Nodes are still whole new instances of V8. Assume at least 30ms startup and 10mb memory for each new Node. That is, you cannot create many thousands of them.
 /// </summary>
 /// <param name="modulePath"> The module to run in the child</param>
 /// <param name="args">Array List of string arguments</param>
 /// <param name="options"></param>
 /// <returns>ChildProcess object</returns>
 public static object fork(JsString modulePath, JsArray <JsString> args, ForkOptions options)
 {
     return(null);
 }
 /// <summary>
 /// This is a special case of the spawn() functionality for spawning Node processes. In addition to having all the methods in a normal ChildProcess instance, the returned object has a communication channel built-in. See child.send(message, [sendHandle]) for details.
 ///
 /// By default the spawned Node process will have the stdout, stderr associated with the parent's. To change this behavior set the silent property in the options object to true.
 ///
 /// The child process does not automatically exit once it's done, you need to call process.exit() explicitly. This limitation may be lifted in the future.
 ///
 /// These child Nodes are still whole new instances of V8. Assume at least 30ms startup and 10mb memory for each new Node. That is, you cannot create many thousands of them.
 /// </summary>
 /// <param name="modulePath"> The module to run in the child</param>
 /// <param name="args">Array List of string arguments</param>
 /// <param name="options"></param>
 /// <returns>ChildProcess object</returns>
 public static object fork(JsString modulePath, JsArray<JsString> args, ForkOptions options) { return null; }
Exemple #3
0
 /// <summary>
 /// This is a special case of the spawn() functionality for spawning Node processes. In addition to having all the methods in a normal ChildProcess instance, the returned object has a communication channel built-in. See child.send(message, [sendHandle]) for details.
 ///
 /// By default the spawned Node process will have the stdout, stderr associated with the parent's. To change this behavior set the silent property in the options object to true.
 ///
 /// The child process does not automatically exit once it's done, you need to call process.exit() explicitly. This limitation may be lifted in the future.
 ///
 /// These child Nodes are still whole new instances of V8. Assume at least 30ms startup and 10mb memory for each new Node. That is, you cannot create many thousands of them.
 /// </summary>
 /// <param name="modulePath"> The module to run in the child</param>
 /// <param name="options"></param>
 /// <returns>ChildProcess object</returns>
 public static object fork(JsString modulePath, ForkOptions options)
 {
     return(null);
 }
 /// <summary>
 /// This is a special case of the spawn() functionality for spawning Node processes. In addition to having all the methods in a normal ChildProcess instance, the returned object has a communication channel built-in. See child.send(message, [sendHandle]) for details.
 ///
 /// By default the spawned Node process will have the stdout, stderr associated with the parent's. To change this behavior set the silent property in the options object to true.
 ///
 /// The child process does not automatically exit once it's done, you need to call process.exit() explicitly. This limitation may be lifted in the future.
 ///
 /// These child Nodes are still whole new instances of V8. Assume at least 30ms startup and 10mb memory for each new Node. That is, you cannot create many thousands of them.
 /// </summary>
 /// <param name="modulePath"> The module to run in the child</param>
 /// <param name="options"></param>
 /// <returns>ChildProcess object</returns>
 public static object fork(JsString modulePath, ForkOptions options) { return null; }