(overlay taskSessionContextOverlay)
| 75 | type taskSessionBridgeOption func(*taskSessionBridge) |
| 76 | |
| 77 | func withTaskSessionContextOverlay(overlay taskSessionContextOverlay) taskSessionBridgeOption { |
| 78 | return func(bridge *taskSessionBridge) { |
| 79 | if bridge != nil { |
| 80 | bridge.contextOverlay = overlay |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | type taskRecoveryStats struct { |
| 86 | requeued int |