RWorkflowActivity
RWorkflowActivity.Rd
Class representing an R workflow activity object.
Public fields
name
The name of the R workflow activity.
providerConfiguration
The configuration of the provider. Must be an object of the class
RProviderConfiguration
.scriptName
The name of the activity's R script.
functionName
The name of the activity's R function. The function has to present in the referenced R script.
input
A list of input arguments for the activity. The items in the list must be objects of the class
ActivityArgument
.output
A list of output arguments for the activity. The items in the list must be objects of the class
ActivityArgument
.
Methods
Method new()
Create a new R workflow activity instance.
Usage
RWorkflowActivity$new(
name = NULL,
providerConfiguration = NULL,
scriptName = NULL,
functionName = NULL,
input = NULL,
output = NULL
)
Arguments
name
The name of the R workflow activity.
providerConfiguration
The configuration of the provider. Must be an object of the class
RProviderConfiguration
.scriptName
The name of the activity's R script.
functionName
The name of the activity's R function. The function has to present in the referenced R script.
input
A list of input arguments for the activity. The items in the list must be objects of the class
ActivityArgument
.output
A list of output arguments for the activity. The items in the list must be objects of the class
ActivityArgument
.