Process

class neko.io.ProcessAvailable in neko var stderr(default,null) : InputThe process' stderr stream. var stdin(default,null) : OutputThe process' stdin stream. Call close to send the EOT. var stdout(default,null) : InputThe process' stdout stream. function new( cmd : String, args : Array<String> ) : VoidCreates the new process, passes in the given args. args must not be null. function close() : VoidCloses the process I/O. function exitCode() : IntReturns the process' exit code. This blocks until the process completes. function getPid() : IntReturns the process' pid. function kill() : Void
version #9014, modified 2010-08-14 17:11:47 by api