FuncApi (Function APIs)
Execute a specific Trillo function by providing its parameters.
FuncApi.executeFunction(String functionName, Map params)
or
FuncApi.executeFunction(String appName, String functionName, Map<String, Object> params)
parameters:
functionName: name of the function
params: hashmap representing the parameters
appName
Return:
object values returned by the called function
Description...
FuncApi.executeFunctionWithMethod(String functionName, String methodName,
Map<String, Object> params)
or
FuncApi.executeFunctionWithMethod(String appName, String functionName, String methodName,
Map<String, Object> params)
functionName
methodName
params
appName
// Some code
Execute a remote ssh command on a server whose keys are known to the workbench. Generally the SSH server is a companion server of the workbench.
FuncApi.executeSSH(String hostName, String command)
or
FuncApi.executeSSH(String hostName, String command, boolean async)
or
FuncApi.executeSSH(String command, boolean async)
parameters:
hostName: the name of the companion server
command: the command needed to be executed
async: execute command immediately and wait or run it in the background
Return:
the result of the ssh command
Ping an asynchronous task by id and returns it's last time stamp
FuncApi.pingTask(String id)
parameters:
id: task name
Return:
the value of the timestamp
Description...
FuncApi.createTask(String taskName, String taskType, String functionName, Map<String,
Object> params)
or
FuncApi.createTask(String taskName, String taskType, String appName, String functionName,
Map<String, Object> params)
taskName
taskType
functionName
params
appName
// Some code
Description...
FuncApi.createTaskBySourceUid(String taskName, String taskType, String sourceUid, String functionName,
Map<String, Object> params)
or
FuncApi.createTaskBySourceUid(String taskName, String taskType,
String sourceUid, String appName, String functionName, Map<String, Object> params)
taskName
taskType
sourceUid
functionName
params
appName
// Some code
Last modified 1yr ago