Package hudson
Class Launcher.DummyLauncher
java.lang.Object
hudson.Launcher
hudson.Launcher.DummyLauncher
- Enclosing class:
- Launcher
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class)
public static class Launcher.DummyLauncher
extends Launcher
- 
Nested Class SummaryNested classes/interfaces inherited from class hudson.LauncherLauncher.DecoratedLauncher, Launcher.DummyLauncher, Launcher.IOTriplet, Launcher.LocalLauncher, Launcher.ProcStarter, Launcher.RemoteLauncher, Launcher.RemoteProcess
- 
Field SummaryFields inherited from class hudson.Launcherchannel, envVarsFilterRuleWrapper, listener, showFullPath
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidCallsProcessTree.killAll(Map)to kill processes.launch(Launcher.ProcStarter starter) Primarily invoked fromLauncher.ProcStarter.start()to start a process with a specific launcher.hudson.remoting.ChannellaunchChannel(String[] cmd, OutputStream out, FilePath workDir, Map<String, String> envVars) Launches a specified process and connects its input/output to aChannel, then return it.Methods inherited from class hudson.LauncherdecorateByEnv, decorateByPrefix, decorateFor, getChannel, getComputer, getListener, isUnix, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, maskedPrintCommandLine, maskedPrintCommandLine, prepareFilterRules, printCommandLine, setEnvVarsFilterRuleWrapper
- 
Constructor Details- 
DummyLauncher
 
- 
- 
Method Details- 
launchDescription copied from class:LauncherPrimarily invoked fromLauncher.ProcStarter.start()to start a process with a specific launcher.- Specified by:
- launchin class- Launcher
- Throws:
- IOException
 
- 
launchChannelpublic hudson.remoting.Channel launchChannel(String[] cmd, OutputStream out, FilePath workDir, Map<String, String> envVars) throws IOException, InterruptedExceptionDescription copied from class:LauncherLaunches a specified process and connects its input/output to aChannel, then return it.When the returned channel is terminated, the process will be killed. - Specified by:
- launchChannelin class- Launcher
- Parameters:
- cmd- The commands.
- out- Where the stderr from the launched process will be sent.
- workDir- The working directory of the new process, or- nullto inherit from the current process
- envVars- Environment variable overrides. In addition to what the current process is inherited (if this is going to be launched from an agent, that becomes the "current" process), these variables will be also set.
- Throws:
- IOException
- InterruptedException
 
- 
killDescription copied from class:LauncherCallsProcessTree.killAll(Map)to kill processes.- Specified by:
- killin class- Launcher
- Throws:
- IOException
- InterruptedException
 
 
-