Description Usage Arguments Value Examples
Tasks can be executed using:
taskApply()
: execute a task and wait for result (better for quick tasks)
taskAsyncApply()
: execute a task and immediately return task info without
result (better for long-running tasks)
taskSend()
: execute a task (doesn't require task sources)
1 2 3 4 5 | taskApply(task, ..., kwargs = NULL, url = getFlowerURL())
taskAsyncApply(task, ..., kwargs = NULL, options = NULL, url = getFlowerURL())
taskSend(task, ..., kwargs = NULL, url = getFlowerURL())
|
task |
Character: task to run |
... |
List of arguments |
kwargs |
Dictionary of arguments |
options |
Dictionary of apply_async keyword arguments |
Task information:
Status
Identifier
Result (in case of taskApply()
only)
1 2 3 | taskApply("tasks.add", 3, 8)
taskAsyncApply("tasks.add", 5, 7)
taskSend("tasks.add", 1, 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.