Returns stored duration value. Fails if stored value type is not duration.
| 321 | // Returns stored duration value. |
| 322 | // Fails if stored value type is not duration. |
| 323 | const absl::Duration DurationOrDie() const { |
| 324 | return GetValueOrDie<absl::Duration>(Type::kDuration); |
| 325 | } |
| 326 | |
| 327 | // Returns stored timestamp value. |
| 328 | // Fails if stored value type is not timestamp. |
no outgoing calls