fr:code:system:process
Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
fr:code:system:process [2012/03/23 14:25] – créée wismerheal | fr:code:system:process [2021/02/13 11:23] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
====== Process [En cours de Traduction Wismerheal][WSL] ====== | ====== Process [En cours de Traduction Wismerheal][WSL] ====== | ||
- | This object allows you to start and manage a process. (program) | + | Cet objet vous permet de lancer et manager un processus. (programme) |
- | ===== Functions | + | ===== Fonctions |
==== Process ==== | ==== Process ==== | ||
- | Constructor function. | + | Fonction de construction. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
var myObject = new Process(); | var myObject = new Process(); | ||
Ligne 16: | Ligne 16: | ||
=== Arguments === | === Arguments === | ||
- | - parameters - (object) | + | - parameters - (object) |
- | * workingDirectory - (string) | + | * workingDirectory - (string) |
- | * processChannelMode - ([[# | + | * processChannelMode - ([[# |
- | * readChannel - ([[# | + | * readChannel - ([[# |
- | * onError - ([[# | + | * onError - ([[# |
- | * onFinished - ([[# | + | * onFinished - ([[# |
- | * onReadyReadStandardError - ([[# | + | * onReadyReadStandardError - ([[# |
- | * onReadyReadStandardOutput - ([[# | + | * onReadyReadStandardOutput - ([[# |
- | * onStarted - ([[# | + | * onStarted - ([[# |
- | * onStateChanged - ([[# | + | * onStateChanged - ([[# |
=== Example === | === Example === | ||
Ligne 46: | Ligne 46: | ||
==== list ==== | ==== list ==== | ||
- | Returns an array of [[en: | + | Renvoie un tableau de [[en: |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
Process.list(); | Process.list(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (array) | + | * (array) |
==== thisProcess ==== | ==== thisProcess ==== | ||
- | Returns a [[en: | + | Renvoi un [[en: |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
Process.thisProcess(); | Process.thisProcess(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (array) | + | * (array) |
==== startDetached ==== | ==== startDetached ==== | ||
- | Starts a process in detached | + | Lance le processus en mode détaché et renvoie un [[en: |
- | You will have lesser control on the process than in attached | + | Vous aurez moins de contrôle sur le processus qu' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
Process.startDetached(filename); | Process.startDetached(filename); | ||
Ligne 83: | Ligne 83: | ||
=== Arguments === | === Arguments === | ||
- | - filename - (string) | + | - filename - (string) |
- | - parameters - (array) | + | - parameters - (array) |
- | - workingDirectory - (string) | + | - workingDirectory - (string) |
- | === Returns | + | === Renvoie |
- | * (array) | + | * (array) |
=== Exceptions === | === Exceptions === | ||
- | * (FilenameError) | + | * (FilenameError) |
- | * (StartProcessError) | + | * (StartProcessError) |
- | ===== Methods | + | ===== Méthodes |
==== handle ==== | ==== handle ==== | ||
- | Returns a [[en: | + | Renvoie un [[en: |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.handle(); | myObject.handle(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * ([[en: | + | * ([[en: |
==== id ==== | ==== id ==== | ||
- | Returns the process | + | Renvoie l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.id(); | myObject.id(); | ||
</ | </ | ||
- | === Returns | + | === REnvoie |
- | * (integer) | + | * (integer) |
==== start ==== | ==== start ==== | ||
- | Starts the process. | + | Lance le processus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.start(filename); | myObject.start(filename); | ||
Ligne 133: | Ligne 133: | ||
=== Arguments === | === Arguments === | ||
- | - filename - (string) | + | - filename - (string) |
- | - parameters - (array) | + | - parameters - (array) |
- | - openMode - ([[# | + | - openMode - ([[# |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Exceptions === | === Exceptions === | ||
- | * (FilenameError) | + | * (FilenameError) |
==== state ==== | ==== state ==== | ||
- | Returns the state of the started process. | + | Renvoie l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.state(); | myObject.state(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie=== |
- | * ([[# | + | * ([[# |
==== error ==== | ==== error ==== | ||
- | Returns the error state of the started process. | + | Renvoie l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.error(); | myObject.error(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * ([[# | + | * ([[# |
==== exitCode ==== | ==== exitCode ==== | ||
- | Returns the process' | + | Renvoie le code de sortie du processus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.exitCode(); | myObject.exitCode(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (integer) | + | * (integer) |
==== exitStatus ==== | ==== exitStatus ==== | ||
- | Returns the process' | + | Renvoie le statut du processus de sortie. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.exitStatus(); | myObject.exitStatus(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * ([[# | + | * ([[# |
==== readError ==== | ==== readError ==== | ||
- | Returns the content of the standard | + | Renvoie le contenu de l’erreur de sortie |
- | === Syntax | + | |
+ | === Syntaxe | ||
<code javascript> | <code javascript> | ||
myObject.readError(); | myObject.readError(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * ([[en: | + | * ([[en: |
==== read ==== | ==== read ==== | ||
- | Returns the content of the standard | + | Renvoie le contenu de la sortie |
- | === Syntax | + | |
+ | === Syntaxe | ||
<code javascript> | <code javascript> | ||
myObject.read(); | myObject.read(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * ([[en: | + | * ([[en: |
==== readErrorText ==== | ==== readErrorText ==== | ||
- | Returns the content of the standard | + | Renvoie le contenu d' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.readErrorText(); | myObject.readErrorText(); | ||
Ligne 219: | Ligne 221: | ||
=== Arguments === | === Arguments === | ||
- | - encoding - ([[en: | + | - encoding - ([[en: |
- | === Returns | + | === Renvoie |
- | * (string) | + | * (string) |
==== readText ==== | ==== readText ==== | ||
- | Returns the content of the standard | + | Renvoie le contenu |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.readText(); | myObject.readText(); | ||
Ligne 236: | Ligne 238: | ||
=== Arguments === | === Arguments === | ||
- | - encoding - ([[en: | + | - encoding - ([[en: |
- | === Returns | + | === Renvoie |
- | * (string) | + | * (string) |
==== atEnd ==== | ==== atEnd ==== | ||
- | Returns true if the process is not running and if no data can be read. | + | Renvoie vrai si le processus n'est pas en cours d' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.atEnd(); | myObject.atEnd(); | ||
Ligne 250: | Ligne 252: | ||
=== Returns === | === Returns === | ||
- | * (boolean) | + | * (boolean) |
==== bytesAvailable ==== | ==== bytesAvailable ==== | ||
- | Returns the number of bytes that can be read. | + | Renvoi le nombre de bytes qui peuvent être lus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.bytesAvailable(); | myObject.bytesAvailable(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (integer) | + | * (integer) |
==== bytesToWrite ==== | ==== bytesToWrite ==== | ||
- | Returns the number of bytes that are still to be written. | + | Renvoie le nombre de bytes qui doivent toujours être écrit. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.bytesToWrite(); | myObject.bytesToWrite(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (integer) | + | * (integer) |
==== canReadLine ==== | ==== canReadLine ==== | ||
- | Returns true if a line can be read. | + | Renvoie vrai si une ligne peut être lue. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.canReadLine(); | myObject.canReadLine(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (boolean) | + | * (boolean) |
==== write ==== | ==== write ==== | ||
- | Writes some data to the process. | + | Écrit des données sur le processus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.write(data); | myObject.write(data); | ||
Ligne 294: | Ligne 296: | ||
=== Arguments === | === Arguments === | ||
- | - data - (mixed) | + | - data - (mixed) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== writeText ==== | ==== writeText ==== | ||
- | Writes text to the process. | + | Écrit du texte sur le processus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.writeText(text, | myObject.writeText(text, | ||
Ligne 308: | Ligne 310: | ||
=== Arguments === | === Arguments === | ||
- | - text - (string) | + | - text - (string) |
- | - encoding - ([[en: | + | - encoding - ([[en: |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setWorkingDirectory ==== | ==== setWorkingDirectory ==== | ||
- | Sets the working directory. This only works when the process is not already started. | + | Définit le dossier de travail. Cela ne fonctionne que sur les processus qui ne sont pas encore lancés. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setWorkingDirectory(workingDirectory); | myObject.setWorkingDirectory(workingDirectory); | ||
Ligne 323: | Ligne 325: | ||
=== Arguments === | === Arguments === | ||
- | - workingDirectory - (string) | + | - workingDirectory - (string) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setProcessChannelMode ==== | ==== setProcessChannelMode ==== | ||
- | Sets process' | + | Définit le mode du " |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setProcessChannelMode(channelMode); | myObject.setProcessChannelMode(channelMode); | ||
Ligne 337: | Ligne 339: | ||
=== Arguments === | === Arguments === | ||
- | - channelMode - ([[# | + | - channelMode - ([[# |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setEnvironment ==== | ==== setEnvironment ==== | ||
- | Sets the process' | + | Définit les variables |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setEnvironment(environment); | myObject.setEnvironment(environment); | ||
Ligne 351: | Ligne 353: | ||
=== Arguments === | === Arguments === | ||
- | - environment - (object) | + | - environment - (object) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Example === | === Example === | ||
Ligne 365: | Ligne 367: | ||
==== updateEnvironment ==== | ==== updateEnvironment ==== | ||
- | Updates the process' | + | Met à jour les variables |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.updateEnvironment(environment); | myObject.updateEnvironment(environment); | ||
Ligne 373: | Ligne 375: | ||
=== Arguments === | === Arguments === | ||
- | - environment - (object) | + | - environment - (object) |
=== Returns === | === Returns === | ||
- | * (Process) | + | * (Process) |
=== Example === | === Example === | ||
Ligne 387: | Ligne 389: | ||
==== setReadChannel ==== | ==== setReadChannel ==== | ||
- | Sets process' | + | Définit le "channel" du processus à lire. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setReadChannel(channel); | myObject.setReadChannel(channel); | ||
Ligne 395: | Ligne 397: | ||
=== Arguments === | === Arguments === | ||
- | - channel - ([[# | + | - channel - ([[# |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setStandardErrorFile ==== | ==== setStandardErrorFile ==== | ||
- | Sets the standard | + | Définit le fichier d' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setStandardErrorFile(fileName); | myObject.setStandardErrorFile(fileName); | ||
Ligne 412: | Ligne 414: | ||
=== Arguments === | === Arguments === | ||
- | - fileName - (string) | + | - fileName - (string) |
- | - channel - ([[# | + | - channel - ([[# |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setStandardInputFile ==== | ==== setStandardInputFile ==== | ||
- | Sets the standard | + | Définit le fichier d' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setStandardInputFile(fileName); | myObject.setStandardInputFile(fileName); | ||
Ligne 427: | Ligne 429: | ||
=== Arguments === | === Arguments === | ||
- | - fileName - (string) | + | - fileName - (string) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setStandardOutputFile ==== | ==== setStandardOutputFile ==== | ||
- | Sets the standard | + | Définit le fichier de sortie |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setStandardOutputFile(fileName); | myObject.setStandardOutputFile(fileName); | ||
Ligne 444: | Ligne 446: | ||
=== Arguments === | === Arguments === | ||
- | - fileName - (string) | + | - fileName - (string) |
- | - channel - ([[# | + | - channel - ([[# |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== setStandardOutputProcess ==== | ==== setStandardOutputProcess ==== | ||
- | Sets the standard | + | Définit la sortie |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.setStandardOutputFile(process); | myObject.setStandardOutputFile(process); | ||
Ligne 459: | Ligne 461: | ||
=== Arguments === | === Arguments === | ||
- | - process - (Process) | + | - process - (Process) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Exceptions === | === Exceptions === | ||
- | * (InvalidProcessError) | + | * (InvalidProcessError) |
==== waitForFinished ==== | ==== waitForFinished ==== | ||
- | Freezes the execution until the process has finished. | + | Gèle l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.waitForFinished(waitTime); | myObject.waitForFinished(waitTime); | ||
Ligne 479: | Ligne 481: | ||
=== Arguments === | === Arguments === | ||
- | - waitTime - (integer) | + | - waitTime - (integer) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Exceptions === | === Exceptions === | ||
- | * (WaitForFinishedError) | + | * (WaitForFinishedError) |
==== waitForStarted ==== | ==== waitForStarted ==== | ||
- | Freezes the execution until the process has started. | + | Gèle l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.waitForStarted(waitTime); | myObject.waitForStarted(waitTime); | ||
Ligne 499: | Ligne 501: | ||
=== Arguments === | === Arguments === | ||
- | - waitTime - (integer) | + | - waitTime - (integer) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Exceptions === | === Exceptions === | ||
- | * (WaitForStartedError) | + | * (WaitForStartedError) |
==== waitForBytesWritten ==== | ==== waitForBytesWritten ==== | ||
- | Freezes the execution until the data has been written. | + | Gèle l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.waitForBytesWritten(waitTime); | myObject.waitForBytesWritten(waitTime); | ||
Ligne 519: | Ligne 521: | ||
=== Arguments === | === Arguments === | ||
- | - waitTime - (integer) | + | - waitTime - (integer) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Exceptions === | === Exceptions === | ||
- | * (WaitForBytesWrittenError) | + | * (WaitForBytesWrittenError) |
==== waitForReadyRead ==== | ==== waitForReadyRead ==== | ||
- | Freezes the execution until data is available. | + | Gèle l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.waitForReadyRead(waitTime); | myObject.waitForReadyRead(waitTime); | ||
Ligne 539: | Ligne 541: | ||
=== Arguments === | === Arguments === | ||
- | - waitTime - (integer) | + | - waitTime - (integer) |
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
=== Exceptions === | === Exceptions === | ||
- | * (WaitForReadyReadError) | + | * (WaitForReadyReadError) |
==== close ==== | ==== close ==== | ||
- | Tries to close the process gracefully. | + | Tente de fermer le processus de manière élégante. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.close(); | myObject.close(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== kill ==== | ==== kill ==== | ||
- | Kills the process. | + | Kill (me baby!) le processus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.kill(); | myObject.kill(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
==== terminate ==== | ==== terminate ==== | ||
- | Terminates the process. | + | Met fin au processus. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.terminate(); | myObject.terminate(); | ||
</ | </ | ||
- | === Returns | + | === Renvoie |
- | * (Process) | + | * (Process) |
Ligne 586: | Ligne 588: | ||
- | ===== Events | + | ===== Évènements |
==== onError ==== | ==== onError ==== | ||
- | Called when an error occured. | + | Appelé quand une erreur survient. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.onError = function(processError) {}; | myObject.onError = function(processError) {}; | ||
Ligne 597: | Ligne 599: | ||
=== Arguments === | === Arguments === | ||
- | - processError - ([[# | + | - processError - ([[# |
=== Example === | === Example === | ||
Ligne 608: | Ligne 610: | ||
==== onFinished ==== | ==== onFinished ==== | ||
- | Called when the process has finished. | + | Appelé quand le processus s'est terminé. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.onFinished = function(exitCode, | myObject.onFinished = function(exitCode, | ||
Ligne 616: | Ligne 618: | ||
=== Arguments === | === Arguments === | ||
- | - exitCode - (integer) | + | - exitCode - (integer) |
- | - exitStatus - ([[# | + | - exitStatus - ([[# |
=== Example === | === Example === | ||
Ligne 627: | Ligne 629: | ||
</ | </ | ||
- | ==== onReadyReadStandardError ==== | + | ==== onReadyReadStandardError ==== (au scrabble ça fait un carton :) ) |
- | Called when there is data available on the standard | + | Appelé quand il n'y a pas de données disponibles sur l' |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.onReadyReadStandardError = function() {}; | myObject.onReadyReadStandardError = function() {}; | ||
Ligne 644: | Ligne 646: | ||
==== onReadyReadStandardOutput ==== | ==== onReadyReadStandardOutput ==== | ||
- | Called when there is data available on the standard | + | Appelé quand il n'y a pas de données disponible sur la sortie |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.onReadyReadStandardOutput = function() {}; | myObject.onReadyReadStandardOutput = function() {}; | ||
Ligne 660: | Ligne 662: | ||
==== onStarted ==== | ==== onStarted ==== | ||
- | Called when the process has started executing. | + | Appelé quand le processus a commencé sont exécution. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.onStarted = function() {}; | myObject.onStarted = function() {}; | ||
Ligne 676: | Ligne 678: | ||
==== onStateChanged ==== | ==== onStateChanged ==== | ||
- | Called when the process' | + | Appelé quans le statut du processus a changé. |
- | === Syntax | + | === Syntaxe |
<code javascript> | <code javascript> | ||
myObject.onStateChanged = function(newState) {}; | myObject.onStateChanged = function(newState) {}; | ||
Ligne 684: | Ligne 686: | ||
=== Arguments === | === Arguments === | ||
- | - newState - ([[# | + | - newState - ([[# |
=== Example === | === Example === | ||
Ligne 697: | Ligne 699: | ||
==== ProcessError ==== | ==== ProcessError ==== | ||
- | A process error. | + | Une erreur de processus. |
- | === Values | + | === Valeurs |
- | - FailedToStart: | + | - FailedToStart: |
- | - Crashed: | + | - Crashed: |
- | - Timedout: | + | - Timedout: |
- | - WriteError: | + | - WriteError: |
- | - ReadError: | + | - ReadError: |
- | - UnknownError: | + | - UnknownError: |
==== ExitStatus ==== | ==== ExitStatus ==== | ||
- | The process' | + | Le statut de sortie. |
- | === Values | + | === Valeurs |
- | - NormalExit: | + | - NormalExit: |
- | - CrashExit: | + | - CrashExit: |
==== ProcessState ==== | ==== ProcessState ==== | ||
- | The process' | + | Le statut du processus. |
- | === Values | + | === Valeurs |
- | - NotRunning: | + | - NotRunning: |
- | - Starting: | + | - Starting: |
- | - Running: | + | - Running: |
==== ProcessChannel ==== | ==== ProcessChannel ==== | ||
- | A process' | + | Un "channel" de processus. |
- | === Values | + | === Valeurss |
- | - StandardOutput: | + | - StandardOutput: |
- | - StandardError: | + | - StandardError: |
==== ProcessChannelMode ==== | ==== ProcessChannelMode ==== | ||
- | A process' | + | Un mode de " |
- | === Values | + | === Valeurs |
- | - SeparateChannels: | + | - SeparateChannels: |
- | - MergedChannels: | + | - MergedChannels: |
- | - ForwardedChannels: | + | - ForwardedChannels: |
==== OpenMode ==== | ==== OpenMode ==== | ||
- | A process's channel | + | Un mode d'ouverture de "channel" de processus. |
- | === Values | + | === Valeurs |
- | - ReadOnly: | + | - ReadOnly: |
- | - WriteOnly: | + | - WriteOnly: |
- | - ReadWrite: | + | - ReadWrite: |
- | - Truncate: | + | - Truncate: |
- | - Text: process | + | - Text: "channel" de processus ouvert en mode texte |
- | - Unbuffered: | + | - Unbuffered: |
fr/code/system/process.1332512714.txt.gz · Dernière modification : 2021/02/13 11:23 (modification externe)