Class: Temporalio::Client::Schedule::ActionResult

Inherits:
Data
  • Object
show all
Defined in:
lib/temporalio/client/schedule.rb,
lib/temporalio/client/schedule.rb

Overview

Information about when an action took place.

Instance Attribute Summary collapse

Instance Attribute Details

#actionActionExecution

Returns Action that took place.

Returns:



428
429
430
# File 'lib/temporalio/client/schedule.rb', line 428

def action
  @action
end

#scheduled_atTime

Returns Scheduled time of the action including jitter.

Returns:

  • (Time)

    Scheduled time of the action including jitter.



428
429
430
# File 'lib/temporalio/client/schedule.rb', line 428

def scheduled_at
  @scheduled_at
end

#started_atTime

Returns When the action actually started.

Returns:

  • (Time)

    When the action actually started.



428
429
430
# File 'lib/temporalio/client/schedule.rb', line 428

def started_at
  @started_at
end