Module com.github.sormuras.bach
Record Class WorkflowRunner
java.lang.Object
java.lang.Record
com.github.sormuras.bach.workflow.WorkflowRunner
A workflow-running builder of projects.
- 
Constructor Summary
ConstructorsConstructorDescriptionWorkflowRunner(Bach bach, Project project) Creates an instance of aWorkflowRunnerrecord class. - 
Method Summary
Modifier and TypeMethodDescriptionbach()Returns the value of thebachrecord component.voidfinal booleanIndicates whether some other object is "equal to" this one.voidvoidfinal inthashCode()Returns a hash code value for this object.voidlaunchModule(String module, Object... arguments) project()Returns the value of theprojectrecord component.voidvoidrunCompileWorkflow(ProjectSpace space) voidvoidrunLaunchModuleWorkflow(ProjectSpace space, String module, Composer<DefaultCommand> composer) final StringtoString()Returns a string representation of this record class. 
- 
Constructor Details
- 
WorkflowRunner
Creates an instance of aWorkflowRunnerrecord class.- Parameters:
 bach- the value for thebachrecord componentproject- the value for theprojectrecord component
 
 - 
 - 
Method Details
- 
grabExternals
 - 
compileSpaces
 - 
executeTests
 - 
launchModule
 - 
run
 - 
runCompileWorkflow
 - 
runExecuteTestsWorkflow
 - 
runLaunchModuleWorkflow
public void runLaunchModuleWorkflow(ProjectSpace space, String module, Composer<DefaultCommand> composer)  - 
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. - 
hashCode
Returns a hash code value for this object. The value is derived from the hash code of each of the record components. - 
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). - 
bach
Returns the value of thebachrecord component.- Returns:
 - the value of the 
bachrecord component 
 - 
project
Returns the value of theprojectrecord component.- Returns:
 - the value of the 
projectrecord component 
 
 -