Class: LiterLlm::WaitForBatchConfig
- Inherits:
-
Object
- Object
- LiterLlm::WaitForBatchConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#backoff_multiplier ⇒ Float?
Returns the value of attribute backoff_multiplier.
-
#initial_interval_secs ⇒ Float?
Returns the value of attribute initial_interval_secs.
-
#max_interval_secs ⇒ Float?
Returns the value of attribute max_interval_secs.
-
#timeout_secs ⇒ Float?
Returns the value of attribute timeout_secs.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ WaitForBatchConfig
constructor
A new instance of WaitForBatchConfig.
Constructor Details
#initialize ⇒ WaitForBatchConfig
Returns a new instance of WaitForBatchConfig.
675 |
# File 'sig/types.rbs', line 675
def initialize: (?initial_interval_secs: Float, ?max_interval_secs: Float, ?backoff_multiplier: Float, ?timeout_secs: Float) -> void
|
Instance Attribute Details
#backoff_multiplier ⇒ Float?
Returns the value of attribute backoff_multiplier.
672 673 674 |
# File 'sig/types.rbs', line 672 def backoff_multiplier @backoff_multiplier end |
#initial_interval_secs ⇒ Float?
Returns the value of attribute initial_interval_secs.
670 671 672 |
# File 'sig/types.rbs', line 670 def initial_interval_secs @initial_interval_secs end |
#max_interval_secs ⇒ Float?
Returns the value of attribute max_interval_secs.
671 672 673 |
# File 'sig/types.rbs', line 671 def max_interval_secs @max_interval_secs end |
#timeout_secs ⇒ Float?
Returns the value of attribute timeout_secs.
673 674 675 |
# File 'sig/types.rbs', line 673 def timeout_secs @timeout_secs end |
Class Method Details
.default ⇒ WaitForBatchConfig
676 |
# File 'sig/types.rbs', line 676
def self.default: () -> WaitForBatchConfig
|