module Flow::Operation::Status

Public Instance Methods

executed?() click to toggle source
# File lib/flow/operation/status.rb, line 17
def executed?
  was_executed.present?
end
failed?() click to toggle source
# File lib/flow/operation/status.rb, line 21
def failed?
  operation_failure.present?
end
success?() click to toggle source
# File lib/flow/operation/status.rb, line 25
def success?
  executed? && !failed?
end