RetryPayload
Payload for “retry” events — a transient operation will be retried.
Class Diagram
Section titled “Class Diagram”---
title: RetryPayload
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class RetryPayload {
+string operation
+int32 attempt
+int32 maxAttempts
+float64 delayMs
+string reason
}
Yaml Example
Section titled “Yaml Example”operation: llmattempt: 2maxAttempts: 3delayMs: 1250reason: rate_limitProperties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| operation | string | Operation being retried |
| attempt | int32 | Attempt number about to run |
| maxAttempts | int32 | Maximum configured attempts |
| delayMs | float64 | Backoff delay before the next attempt in milliseconds |
| reason | string | Reason for the retry |