Interface WorkerScriptConfig
-
- All Superinterfaces:
NodeScriptConfig
,RgScriptConfig
,Serializable
- All Known Implementing Classes:
WorkerShellScript
public interface WorkerScriptConfig extends NodeScriptConfig
Represent RG worker script, currently only shell script is provided by RG- Author:
- vjuranek
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
WorkerScriptConfig.Options
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getWorkerIndex()
String
getWorkerName()
WorkerScriptConfig
withWorkerIndex(int workerIndex)
WorkerScriptConfig
withWorkerName(String workerName)
-
Methods inherited from interface org.jenkinsci.plugins.radargun.model.NodeScriptConfig
getJavaOpts, getMainHost, getOutputPath, getPlugin, getPluginConfig, isTailFollow, isWait, withJavaOpts, withMainHost, withOutput, withPlugin, withPluginConfig, withTailFollow, withWait
-
Methods inherited from interface org.jenkinsci.plugins.radargun.model.RgScriptConfig
getInterpreter, getScriptCmd, getScriptName, getScriptPath, withScriptPath
-
-
-
-
Method Detail
-
getWorkerIndex
int getWorkerIndex()
-
getWorkerName
String getWorkerName()
-
withWorkerIndex
WorkerScriptConfig withWorkerIndex(int workerIndex)
-
withWorkerName
WorkerScriptConfig withWorkerName(String workerName)
-
-