Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Transaction Queue does not stop at exception

    I'm using SmartClient Power edition. I've got a transaction that submits several DSRequests in a queue.

    The second request throws an exception. BUT, it does not stop processing. It continues to the other requests in the queue.

    The log file extract below is about a server logs. How can I get the exception to stop processing the rest of the queue.
    Attached Files

    #2
    We don't necessarily know whether a DMI you've defined is something that should or should not run if an earlier operation failed. Your code could, for example, handle the error condition properly, or be intended to log something about the failure.

    If your code definitely should not run if there is an earlier failure (regardless of what it is), you can call RPCManager.queueHasFailures() to check for this.

    Comment


      #3
      Wonderful. This worked excellent!

      Comment

      Working...
      X