Class: DurableFlow::WorkflowTimeline::StepEntry

Inherits:
Struct
  • Object
show all
Defined in:
lib/durable_flow/workflow_timeline.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#eventsObject

Returns the value of attribute events

Returns:

  • (Object)

    the current value of events



39
40
41
# File 'lib/durable_flow/workflow_timeline.rb', line 39

def events
  @events
end

#logsObject

Returns the value of attribute logs

Returns:

  • (Object)

    the current value of logs



39
40
41
# File 'lib/durable_flow/workflow_timeline.rb', line 39

def logs
  @logs
end

#stepObject

Returns the value of attribute step

Returns:

  • (Object)

    the current value of step



39
40
41
# File 'lib/durable_flow/workflow_timeline.rb', line 39

def step
  @step
end

#waitsObject

Returns the value of attribute waits

Returns:

  • (Object)

    the current value of waits



39
40
41
# File 'lib/durable_flow/workflow_timeline.rb', line 39

def waits
  @waits
end

Instance Method Details

#attemptsObject



52
53
54
# File 'lib/durable_flow/workflow_timeline.rb', line 52

def attempts
  step.attempts
end

#idObject



40
41
42
# File 'lib/durable_flow/workflow_timeline.rb', line 40

def id
  step.id
end

#nameObject



44
45
46
# File 'lib/durable_flow/workflow_timeline.rb', line 44

def name
  step.name
end

#statusObject



48
49
50
# File 'lib/durable_flow/workflow_timeline.rb', line 48

def status
  step.status
end