DaisiExecution {rdaisi} | R Documentation |
Generate a new execution of a given Daisi
DaisiExecution(daisi, endpoint, ...)
daisi |
The Daisi object, initialized with Daisi() |
endpoint |
The endpoint of the Daisi to call |
... |
Arguments passed onto the underlying Daisi |
DaisiExecution object with the Execution parameters
## Not run:
configure_daisi()
d <- Daisi("Add Two Numbers")
de <- DaisiExecution(d, list(firstNumber = 5, secondNumber = 6))
Sys.sleep(1)
de$value()
## End(Not run)