2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2017-08-14 11:56:23 +00:00
|
|
|
class Sequencer
|
|
|
|
class Sequence
|
|
|
|
extend ::Sequencer::Mixin::PrefixedConstantize
|
|
|
|
|
|
|
|
PREFIX = 'Sequencer::Sequence::'.freeze
|
|
|
|
|
|
|
|
attr_reader :units, :expecting
|
|
|
|
|
|
|
|
def initialize(units:, expecting: [])
|
|
|
|
@units = units
|
|
|
|
@expecting = expecting
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|