Uses of Class
hudson.slaves.ComputerLauncher
-
Packages that use ComputerLauncher Package Description hudson hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.slaves Code related to agents. -
-
Uses of ComputerLauncher in hudson
Methods in hudson that return types with arguments of type ComputerLauncher Modifier and Type Method Description static List<Descriptor<ComputerLauncher>>
Functions. getComputerLauncherDescriptors()
Deprecated. -
Uses of ComputerLauncher in hudson.model
Methods in hudson.model that return ComputerLauncher Modifier and Type Method Description ComputerLauncher
Slave. getLauncher()
Methods in hudson.model that return types with arguments of type ComputerLauncher Modifier and Type Method Description List<Descriptor<ComputerLauncher>>
Slave.SlaveDescriptor. computerLauncherDescriptors(Slave it)
Returns the list ofComputerLauncher
descriptors appropriate to the suppliedSlave
.Methods in hudson.model with parameters of type ComputerLauncher Modifier and Type Method Description void
Slave. setLauncher(ComputerLauncher launcher)
Constructors in hudson.model with parameters of type ComputerLauncher Constructor Description Slave(String name, String remoteFS, ComputerLauncher launcher)
Slave(String name, String nodeDescription, String remoteFS, int numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy)
Deprecated.since 2009-02-20.Slave(String name, String nodeDescription, String remoteFS, int numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy, List<? extends NodeProperty<?>> nodeProperties)
Deprecated.as of 2.2 UseSlave(String, String, ComputerLauncher)
and set the rest through setters.Slave(String name, String nodeDescription, String remoteFS, String numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy, List<? extends NodeProperty<?>> nodeProperties)
Deprecated.since 2.184 -
Uses of ComputerLauncher in hudson.slaves
Subclasses of ComputerLauncher in hudson.slaves Modifier and Type Class Description class
ComputerLauncherFilter
ComputerLauncher
filter that can be used as a base class for decorators.class
DelegatingComputerLauncher
Base implementation ofComputerLauncher
that to be used by launchers that perform some initialization (typically something cloud/v12n related to power up the machine), and then delegate to anotherComputerLauncher
to connect.class
JNLPLauncher
ComputerLauncher
via inbound connections.Fields in hudson.slaves declared as ComputerLauncher Modifier and Type Field Description protected ComputerLauncher
ComputerLauncherFilter. core
protected ComputerLauncher
DelegatingComputerLauncher. launcher
Fields in hudson.slaves with type parameters of type ComputerLauncher Modifier and Type Field Description static Descriptor<ComputerLauncher>
JNLPLauncher. DESCRIPTOR
Deprecated.as of 1.XXX UseJenkins.getDescriptor(Class)
static DescriptorList<ComputerLauncher>
ComputerLauncher. LIST
Deprecated.as of 1.281 UseExtension
for registration, and useJenkins.getDescriptorList(Class)
for read access.Methods in hudson.slaves that return ComputerLauncher Modifier and Type Method Description ComputerLauncher
ComputerLauncherFilter. getCore()
Returns the delegation target.ComputerLauncher
SlaveComputer. getDelegatedLauncher()
Return theComputerLauncher
for this SlaveComputer, strips off anyDelegatingComputerLauncher
s orComputerLauncherFilter
s.ComputerLauncher
DelegatingComputerLauncher. getLauncher()
ComputerLauncher
SlaveComputer. getLauncher()
Return theComputerLauncher
for thisSlaveComputer
.protected ComputerLauncher
SlaveComputer. grabLauncher(Node node)
abstract ComputerLauncher
ComputerConnector. launch(String host, TaskListener listener)
Creates aComputerLauncher
for connecting to the given host.Methods in hudson.slaves that return types with arguments of type ComputerLauncher Modifier and Type Method Description List<Descriptor<ComputerLauncher>>
DelegatingComputerLauncher.DescriptorImpl. applicableDescriptors(Slave it, Slave.SlaveDescriptor itDescriptor)
Returns the applicable nested computer launcher types.List<Descriptor<ComputerLauncher>>
DelegatingComputerLauncher.DescriptorImpl. getApplicableDescriptors()
Descriptor<ComputerLauncher>
ComputerLauncherFilter. getDescriptor()
Constructors in hudson.slaves with parameters of type ComputerLauncher Constructor Description AbstractCloudSlave(String name, String remoteFS, ComputerLauncher launcher)
AbstractCloudSlave(String name, String nodeDescription, String remoteFS, int numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy, List<? extends NodeProperty<?>> nodeProperties)
Deprecated.since 2.184AbstractCloudSlave(String name, String nodeDescription, String remoteFS, String numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy, List<? extends NodeProperty<?>> nodeProperties)
Deprecated.since 2.184ComputerLauncherFilter(ComputerLauncher core)
DelegatingComputerLauncher(ComputerLauncher launcher)
DumbSlave(String name, String remoteFS, ComputerLauncher launcher)
DumbSlave(String name, String nodeDescription, String remoteFS, String numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy)
Deprecated.as of 1.286.DumbSlave(String name, String nodeDescription, String remoteFS, String numExecutors, Node.Mode mode, String labelString, ComputerLauncher launcher, RetentionStrategy retentionStrategy, List<? extends NodeProperty<?>> nodeProperties)
Deprecated.as of 2.2.
-