Uses of Class
hudson.Launcher.ProcStarter

Packages that use Launcher.ProcStarter
hudson   
hudson.os.windows   
hudson.util Other miscellaneous utility code 
org.jvnet.hudson.test Test harness for Jenkins and its plugins. 
 

Uses of Launcher.ProcStarter in hudson
 

Methods in hudson that return Launcher.ProcStarter
 Launcher.ProcStarter Launcher.ProcStarter.cmdAsSingleString(String s)
          Passes a white-space separated single-string command (like "cat abc def") and parse them as a command argument.
 Launcher.ProcStarter Launcher.ProcStarter.cmds(ArgumentListBuilder args)
           
 Launcher.ProcStarter Launcher.ProcStarter.cmds(File program, String... args)
           
 Launcher.ProcStarter Launcher.ProcStarter.cmds(List<String> args)
           
 Launcher.ProcStarter Launcher.ProcStarter.cmds(String... args)
           
 Launcher.ProcStarter Launcher.ProcStarter.copy()
          Copies a Launcher.ProcStarter.
 Launcher.ProcStarter Launcher.ProcStarter.envs(Map<String,String> overrides)
          Sets the environment variable overrides.
 Launcher.ProcStarter Launcher.ProcStarter.envs(String... overrides)
           
 Launcher.ProcStarter Launcher.launch()
          Launches a process by using a builder-pattern to configure the parameters.
 Launcher.ProcStarter Launcher.ProcStarter.masks(boolean... masks)
          Hide parts of the command line from being printed to the log.
 Launcher.ProcStarter Launcher.ProcStarter.pwd(File workDir)
           
 Launcher.ProcStarter Launcher.ProcStarter.pwd(FilePath workDir)
           
 Launcher.ProcStarter Launcher.ProcStarter.pwd(String workDir)
           
 Launcher.ProcStarter Launcher.ProcStarter.readStderr()
          In addition to the effect of readStdout(), indicate that the caller will pump stderr from the child process separately from stdout.
 Launcher.ProcStarter Launcher.ProcStarter.readStdout()
          Indicates that the caller will pump stdout from the child process via Proc.getStdout() (whereas by default you call stdout(OutputStream) and let Jenkins pump stdout into your OutputStream of choosing.
 Launcher.ProcStarter Launcher.ProcStarter.stderr(OutputStream err)
          Controls where the stderr of the process goes.
 Launcher.ProcStarter Launcher.ProcStarter.stdin(InputStream in)
          Controls where the stdin of the process comes from.
 Launcher.ProcStarter Launcher.ProcStarter.stdout(OutputStream out)
           
 Launcher.ProcStarter Launcher.ProcStarter.stdout(TaskListener out)
          Sends the stdout to the given TaskListener.
 Launcher.ProcStarter Launcher.ProcStarter.writeStdin()
          Indicates that the caller will directly write to the child process stdin() via Proc.getStdin().
 

Methods in hudson with parameters of type Launcher.ProcStarter
abstract  Proc Launcher.launch(Launcher.ProcStarter starter)
          Primarily invoked from start() to start a process with a specific launcher.
 Proc Launcher.LocalLauncher.launch(Launcher.ProcStarter ps)
           
 Proc Launcher.RemoteLauncher.launch(Launcher.ProcStarter ps)
           
 

Uses of Launcher.ProcStarter in hudson.os.windows
 

Methods in hudson.os.windows with parameters of type Launcher.ProcStarter
 Proc WindowsRemoteLauncher.launch(Launcher.ProcStarter ps)
           
 

Uses of Launcher.ProcStarter in hudson.util
 

Methods in hudson.util that return Launcher.ProcStarter
 Launcher.ProcStarter JVMBuilder.launch(Launcher launcher)
          Fills a Launcher.ProcStarter with all the parameters configured by this builder.
 

Uses of Launcher.ProcStarter in org.jvnet.hudson.test
 

Methods in org.jvnet.hudson.test with parameters of type Launcher.ProcStarter
 Proc FakeLauncher.onLaunch(Launcher.ProcStarter p)
          Called whenever a PretendSlave is asked to fork a new process.
 



Copyright © 2004-2013. All Rights Reserved.