Class: Temporalio::Client::Schedule::ActionResult
- Inherits:
-
Data
- Object
- Data
- Temporalio::Client::Schedule::ActionResult
- Defined in:
- lib/temporalio/client/schedule.rb,
lib/temporalio/client/schedule.rb
Overview
Information about when an action took place.
Instance Attribute Summary collapse
-
#action ⇒ ActionExecution
Action that took place.
-
#scheduled_at ⇒ Time
Scheduled time of the action including jitter.
-
#started_at ⇒ Time
When the action actually started.
Instance Attribute Details
#action ⇒ ActionExecution
Returns Action that took place.
428 429 430 |
# File 'lib/temporalio/client/schedule.rb', line 428 def action @action end |
#scheduled_at ⇒ Time
Returns 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_at ⇒ Time
Returns When the action actually started.
428 429 430 |
# File 'lib/temporalio/client/schedule.rb', line 428 def started_at @started_at end |