class AWS::Flow::DecisionWrapper

@api private

Public Class Methods

new(id, decision, options = []) click to toggle source

TODO Consider taking out the id, it’s unclear if it is needed

# File lib/aws/decider/async_decider.rb, line 64
def initialize(id, decision, options = [])
  @decision = decision
  @id = id
end

Public Instance Methods

consume(symbol) click to toggle source

@api private

# File lib/aws/decider/async_decider.rb, line 74
def consume(symbol)
  # quack like a state machine
end
get_decision() click to toggle source

@api private

# File lib/aws/decider/async_decider.rb, line 70
def get_decision
  @decision
end
keys() click to toggle source

quack like a decision, too

# File lib/aws/decider/async_decider.rb, line 78
def keys
  return []
end