Trillo Java SDK
Search
K

FuncApi (Function APIs)

executeFunction

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​

executeFunctionWithMethod

Description...
FuncApi.executeFunctionWithMethod(String functionName, String methodName,
Map<String, Object> params)
or
FuncApi.executeFunctionWithMethod(String appName, String functionName, String methodName,
Map<String, Object> params)

Parameters

functionName
methodName
params
appName

Returns

// Some code

executeSSH

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​

pingTask

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​

createTask

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)

Parameters

taskName
taskType
functionName
params
appName

Returns

// Some code

createTaskBySourceUid

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)

Parameters

taskName
taskType
sourceUid
functionName
params
appName

Returns

// Some code