Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
object callOperation(String name)
object callOperation(String name, List<?> arguments)
object callOperation(Object_ object, String name)
object callOperation(Object_ object, String name, List<?> arguments)
object callOperation(Object_ object, String name, List<?> arguments, boolean isSynchronous)

   If the object is omitted then context (self) is used automatically.

The following example shows how to call a specified operation in ALH API by passing the operation's name

Code Block
languagetext
value = ALH.callOperation("test"); 

...


You can also give initial parameter values in which the arguments lists must be created by executing the following code

...