Class: Temporalio::Client::Schedule::List::State
- Inherits:
-
Object
- Object
- Temporalio::Client::Schedule::List::State
- Defined in:
- lib/temporalio/client/schedule.rb
Overview
State of a listed schedule.
Instance Attribute Summary collapse
-
#note ⇒ String?
Human readable message for the schedule.
-
#paused ⇒ Boolean
Whether the schedule is paused.
Instance Attribute Details
#note ⇒ String?
Returns Human readable message for the schedule. The system may overwrite this value on certain conditions like pause-on-failure.
977 978 979 980 981 982 983 984 985 986 987 |
# File 'lib/temporalio/client/schedule.rb', line 977 class State # @!visibility private def initialize(raw_info:) # steep:ignore:start super( note: Internal::ProtoUtils.string_or(raw_info.notes), paused: raw_info.paused ) # steep:ignore:end end end |
#paused ⇒ Boolean
Returns Whether the schedule is paused.
977 978 979 980 981 982 983 984 985 986 987 |
# File 'lib/temporalio/client/schedule.rb', line 977 class State # @!visibility private def initialize(raw_info:) # steep:ignore:start super( note: Internal::ProtoUtils.string_or(raw_info.notes), paused: raw_info.paused ) # steep:ignore:end end end |