Uses of Class
com.dnanexus.DXExecution
-
Packages that use DXExecution Package Description com.dnanexus Provides low- and high-level bindings to the DNAnexus Platform. -
-
Uses of DXExecution in com.dnanexus
Classes in com.dnanexus with type parameters of type DXExecution Modifier and Type Interface Description interfaceDXExecutable<T extends DXExecution>An executable (applet, app, or workflow).static classDXSearch.FindExecutionsRequestBuilder<T extends DXExecution>Builder class for formulatingfindExecutionsqueries and executing them.static classDXSearch.FindExecutionsResult<T extends DXExecution>The set of executions that matched afindExecutionsquery.classExecutableRunner<T extends DXExecution>Collects parameters for a new run of an executable.Subclasses of DXExecution in com.dnanexus Modifier and Type Class Description classDXAnalysisAn analysis object (a specific instantiation of a workflow).classDXJobA job object (a specific instantiation of an app or applet).Methods in com.dnanexus that return DXExecution Modifier and Type Method Description static DXExecutionDXExecution. getInstance(String executionId)Returns aDXExecutioncorresponding to an existing execution with the specified ID.static DXExecutionDXExecution. getInstanceWithEnvironment(String executionId, DXEnvironment env)Returns aDXExecutioncorresponding to an existing execution with the specified ID, using the specified environment.DXExecutionDXExecution.Describe. getRootExecution()Returns the execution at the root of the execution tree (the job or analysis that was created by a user's external API call rather than by a job or run as a stage in an analysis).abstract DXExecutionDXExecution. waitUntilDone()Waits until the execution has successfully completed and is in the DONE state.Methods in com.dnanexus that return types with arguments of type DXExecution Modifier and Type Method Description static DXSearch.FindExecutionsRequestBuilder<DXExecution>DXSearch. findExecutions()Returns a builder object for finding executions (jobs or analyses) that match certain criteria.static DXSearch.FindExecutionsRequestBuilder<DXExecution>DXSearch. findExecutionsWithEnvironment(DXEnvironment env)Returns a builder object for finding executions that match certain criteria, using the specified environment.Methods in com.dnanexus with parameters of type DXExecution Modifier and Type Method Description 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.DXSearch.FindExecutionsRequestBuilder<T>DXSearch.FindExecutionsRequestBuilder. withRootExecution(DXExecution rootExecution)Only return executions with the specified root execution.Method parameters in com.dnanexus with type arguments of type DXExecution Modifier and Type Method Description DXSearch.FindExecutionsRequestBuilder<T>DXSearch.FindExecutionsRequestBuilder. withIdsIn(Collection<? extends DXExecution> executions)Only returns executions whose IDs match one of the specified executions.
-