class AWS::SimpleWorkflow::Client

Client class for Amazon Simple Workflow Service (SWF).

Constants

CACHEABLE_REQUESTS

@private

Protected Instance Methods

cacheable_request?(name, options) click to toggle source
# File lib/aws/simple_workflow/client.rb, line 1194
def cacheable_request? name, options
  if name == :poll_for_decision_task
    options.keys.include?(:next_page_token)
  else
    self.class::CACHEABLE_REQUESTS.include?(name)
  end
end