TPS function

Scripting language:

  • JavaScript
    function TPS_func_name (cloverEnv, context, mode, msg, userArgs, dl)
  • Python
    def TPS_func_name (cloverEnv, context, mode, msg, userArgs, dl)

Args

  • cloverEnv

    This is a reference to the Cloverleaf run-time environment.

  • mode

    Run mode: start | run | time | shutdown

    time is used only in the protocol read TPS.

  • msg

    This is a reference to the message being processed. This is null for start or time mode, unless there is more than one TPS on the stack and an earlier one has a message.

  • context

    This identifies which TPS-style UPoC is involved.

  • userArgs

    These are the user-supplied arguments.

  • dl

    The TPS disposition list:

    • CONTINUE
    • ERROR
    • KILL
    • OVER
    • PROTO
    • SEND
    • KILLREPLY
    • RETRY

Returns: None