Page History
You can use the following APIs to call an operation
Code Block | ||
---|---|---|
| ||
public static Object object callOperation(String name) { ... } public static Object object callOperation(String name, List<?> arguments) { ... } public static Object object callOperation(Object_ object, String name) { ... } public static Object object callOperation(Object_ object, String name, List<?> arguments) { ... } public static Object object callOperation(Object_ object, String name, List<?> arguments, boolean isSynchronous) { ... } |
The following example shows how to call a specified operation in ALH API by passing the operation's name
...