class AWS::SimpleWorkflow::HistoryEventCollection

def initialize workflow_execution, options = {}

Options Hash: (**options)
  • :reverse_order (Boolean) -- When true,

Parameters:
  • options (Hash) --
  • workflow_execution (WorkflowExecution) -- The execution this
def initialize workflow_execution, options = {}
  @workflow_execution = workflow_execution
  @reverse_order = options.key?(:reverse_order) ?
    !!options[:reverse_order] : false
  super
end