Class: Yawl::Steps::RealStepMissing

Inherits:
Base
  • Object
show all
Defined in:
lib/yawl/steps/base.rb

Instance Attribute Summary

Attributes inherited from Base

#output_io

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

all_steps, #delay_between_attempts, #fatal!, #initialize, #log, #name, #output, #process, #puts, register, #run_with_log, #sleep

Constructor Details

This class inherits a constructor from Yawl::Steps::Base

Class Method Details

.nameObject



120
121
122
# File 'lib/yawl/steps/base.rb', line 120

def self.name
  "real_step_missing"
end

Instance Method Details

#attemptsObject



128
129
130
# File 'lib/yawl/steps/base.rb', line 128

def attempts
  0
end

#runObject



124
125
126
# File 'lib/yawl/steps/base.rb', line 124

def run
  raise "The real step is missing"
end