Exception: Ruote::Synchronize::UndefinedKey

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/ruote/synchronize/participant.rb

Overview

Raised when the synchronize participant is used without a key

Examples:

Will raise UndefinedKey during process execution

pdef = Ruote.process_definition do
  synchronize
  synchronize :key => nil
  synchronize :key => ''
end