Does Appian Record support optimistic locking?

Certified Associate Developer

With CDT, we can use @Version annotation for optimistic locking. Optimistic locking is a concurrency control mechanism in which it ensures that concurrent transactions will not conflict with each other. If there is a chance of conflict during transactions, the transaction having an older version number will be aborted.

Can we achieve a similar thing using Records?

  Discussion posts and replies are publicly visible

Parents Reply
  • The link does indeed talk about the basic concept of Optimistic Concurrency and has the generic textbook explanation of how to theoretically solve the problem.

    Would be great to see an actual code pattern, template, or code example of how this can actually be performed in practice. i.e. An Interface querying data and passing the concurrency check field into the process model through a Record Action.

Children