Trillo Workbench Java SDK
  • Introduction
    • Sample Example
  • BaseApi (Basic APIs)
  • LogApi (Logging APIs)
  • DSApi (Database APIs)
    • Overview
    • Retrieve APIs
    • Create and Update API
    • Delete APIs
    • Empty Table
    • Sample Functions Using API
  • FuncApi (Function APIs)
  • TaskApi (Task APIs)
  • CacheApi (Memory Cache APIs)
    • Delete APIs
    • Create and Update API
    • Retrieve APIs
  • StorageApi
  • CallLogger (Logging Level APIs)
  • CommandApi
  • OAuth1Api
  • Google Cloud APIs
    • BigQueryApi (BigQuery APIs)
    • GCSApi (Cloud Storage APIs)
    • GCPAuthApi
    • GCPRestApi
    • GCPTokenInfo
  • Metadata API (MetaApi)
    • Create and Update API
    • All Retrieve-Only
  • UMApi (User, Tenant, Roles APIs)
  • HttpApi (HTTP APIs)
  • SFTPApi
  • FileUtil
  • CSVApi
  • EmailApi (Email APIs)
Powered by GitBook
On this page
  • executeFunction
  • executeFunctionWithMethod
  • executeSSH
  • pingTask
  • createTask
  • createTaskBySourceUid

Was this helpful?

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

Sample Code

Map<String, Object> functionParameters = new LinkedHashMap<String, Object>(); 
Result result = FuncApi.executeFunction("FUNCTION_NAME", functionParameters);

Returns:

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

Sample Code

Map<String, Object> functionParameters = new LinkedHashMap<String, Object>(); 
Result result = FuncApi.executeFunctionWithMethod("FUNCTION_NAME", "METHOD_NAME", functionParameters);

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

Returns:

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

Sample Code


Object result = FuncApi.pingTask("id");

Returns:

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

Sample Code


Object result = FuncApi.pingTask("id");

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

Sample Code

Map<String, Object> functionParameters = new LinkedHashMap<String, Object>(); 
Result result = FuncApi.createTaskBySourceUid("upsertTask", "CURD", "Job1123", "FUNCTION_NAME", functionParameters);

Returns

// Some code

Last updated 1 year ago

Was this helpful?