Sha256: d95cedf4bcfbe84c75ff231e367284fc432182c4a49f157ca3a091d7e7ae3dc1
Contents?: true
Size: 545 Bytes
Versions: 4
Compression:
Stored size: 545 Bytes
Contents
module WorkflowRb class WorkflowInstance attr_accessor :id attr_accessor :definition_id attr_accessor :version attr_accessor :description attr_accessor :execution_pointers attr_accessor :next_execution attr_accessor :status attr_accessor :data attr_accessor :create_time attr_accessor :complete_time def initialize @execution_pointers = [] end end class WorkflowStatus RUNNABLE = 0 SUSPENDED = 1 COMPLETE = 2 TERMINATED = 3 end end
Version data entries
4 entries across 4 versions & 1 rubygems