Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

ESL source code of Picture or Event objects (depending on their configuration) consists of two parts – client-side (Local) and server-side (Remote). From the view of configuration, these two parts behave as inseparable units.

...

For mutual calling of RPC procedures (between ESL scripts that are the part of the configuration of one object), there the following notation can be used the following entry:

CALL [] RPCProcedure.....

A syntax structure construction [] simplified the addressing (you need not define the called object does not need to be defined). If the RPCProcedure is in the same script, internally there the local calling will be internally used the local calling (without input queue).

The handling of all events (except for the defined exceptions) can be defined in both scripts. When a particular event occurs, the system ensures the calling of both handleshandlers. From the view of D2000 HI, the exceptions to this rule are the synchronous events that expect the a response - return value (IN OUT parameter) from the ESL script. These events can be handled only in one ESL script.

...