struct Barista::OrchestrationInfo
- Barista::OrchestrationInfo
- Struct
- Value
- Object
Overview
Describes the orchestration state
Passed to the on_unblocked callback
Defined in:
barista/orchestration_info.crConstructors
Instance Method Summary
- #active_sequences : Array({String, String})
- #blocked : Array(String)
- #building : Array(String)
- #built : Array(String)
-
#to_s(io : IO)
Same as
#inspect(io)
. -
#to_s
Returns a nicely readable and concise string representation of this object, typically intended for users.
- #unblocked : Array(String)
Constructor Detail
def self.new(*, unblocked : Array(String), blocked : Array(String), building : Array(String), built : Array(String), active_sequences : Array(Tuple(String, String)))
#