Runtime tools : Client engine : Using the client engine service : Client engine service: APIs
  
Client engine service: APIs
The APIs for the UDTT client engine service are equivalent to the APIs in the UDTT client engine.
 
Client engine service(TS class/API)
Client engine (AMD module/API)
ClientEngineService (TS class)
UDTT (AMD module)
ClientEngineService.loadBTT(...)
BTTLoader.loadBTT(...)
ClientEngineService.launchFlow(...)
Engine.launchFlow(...)
BTT.launchFlow(...) // shorthand
ClientEngineService.execOperation(...)
 
Engine.execOperation(...)
BTT.execOperation(...) // shorthand
Session (TS class)
Session(AMD module)
ClientEngineService. establishSession(...)
Session.establishSession(...) // shorthand
Session.establishSession(...)
BTT.establishSession(...) // shorthand
Session.destroySession(...) // shorthand
ClientEngineService. destroySession(...)
Session.destroySession(...)
BTT.destroySession(...) // shorthand
Flow (TS class)
Flow (AMD module)
Flow.changeEvent(...)
Flow.changeEvent(...)
For information about the APIs, see Using the client engine.
Go up to
Using the client engine service