ExecutableRunner<T> |
ExecutableRunner.addTags(Collection<String> tags) |
Adds the specified tags to the resulting execution.
|
ExecutableRunner<T> |
ExecutableRunner.delayWorkspaceDestruction() |
Delays the destruction of the workspace of the resulting job so it can be examined for
debugging.
|
ExecutableRunner<T> |
ExecutableRunner.dependsOn(DXDataObject dataObject) |
Makes the resulting execution depend on the specified data object, so that the execution will
not begin until the data object is closed.
|
ExecutableRunner<T> |
ExecutableRunner.dependsOn(DXExecution execution) |
Makes the resulting execution depend on the specified execution, so that the former will not
begin until the latter has successfully completed.
|
ExecutableRunner<T> |
ExecutableRunner.inFolder(String folder) |
Deprecated.
|
ExecutableRunner<T> |
ExecutableRunner.inProject(DXProject project) |
Deprecated.
|
ExecutableRunner<DXJob> |
DXApplet.newRun() |
|
ExecutableRunner<T> |
DXExecutable.newRun() |
Returns an object for creating a new run of this executable.
|
ExecutableRunner<DXAnalysis> |
DXWorkflow.newRun() |
|
ExecutableRunner<T> |
ExecutableRunner.putAllProperties(Map<String,String> properties) |
Sets the specified properties on the execution to be created.
|
ExecutableRunner<T> |
ExecutableRunner.putProperty(String key,
String value) |
Sets the specified property on the execution to be created.
|
ExecutableRunner<T> |
ExecutableRunner.setDetails(Object details) |
Sets the execution details to the JSON serialized value of the specified object.
|
ExecutableRunner<T> |
ExecutableRunner.setFolder(String folder) |
Sets the folder in which the execution's outputs will be deposited.
|
ExecutableRunner<T> |
ExecutableRunner.setInput(Object inputObject) |
Sets the input hash to the JSON serialized value of the specified object.
|
ExecutableRunner<T> |
ExecutableRunner.setName(String name) |
Sets the name of the resulting execution.
|
ExecutableRunner<T> |
ExecutableRunner.setProject(DXProject project) |
Sets the project context of the resulting execution.
|
ExecutableRunner<T> |
ExecutableRunner.setRawInput(com.fasterxml.jackson.databind.JsonNode inputHash) |
Sets the input hash to the specified JSON node.
|
ExecutableRunner<T> |
ExecutableRunner.withDetails(Object details) |
Deprecated.
|
ExecutableRunner<T> |
ExecutableRunner.withInput(Object inputObject) |
Deprecated.
|
ExecutableRunner<T> |
ExecutableRunner.withName(String name) |
Deprecated.
|
ExecutableRunner<T> |
ExecutableRunner.withRawInput(com.fasterxml.jackson.databind.JsonNode inputHash) |
Deprecated.
|