module Teckel::Operation::InstanceMethods

Public Instance Methods

fail!(*args) click to toggle source

Delegates to the configured Runner. The default behavior is to halt any further execution with an error value.

@see Teckel::Operation::Runner#fail! @!visibility protected

# File lib/teckel/operation.rb, line 184
def fail!(*args)
  runner.fail!(*args)
end
success!(*args) click to toggle source

Delegates to the configured Runner. The default behavior is to halt any further execution with a output value.

@see Teckel::Operation::Runner#success! @!visibility protected

# File lib/teckel/operation.rb, line 175
def success!(*args)
  runner.success!(*args)
end