Context returns an option that can be used to configure a context for APIs that are context aware such as those part of the JetStream interface.
(ctx context.Context)
| 1305 | // Context returns an option that can be used to configure a context for APIs |
| 1306 | // that are context aware such as those part of the JetStream interface. |
| 1307 | func Context(ctx context.Context) ContextOpt { |
| 1308 | return ContextOpt{ctx} |
| 1309 | } |
| 1310 | |
| 1311 | type nakDelay time.Duration |
| 1312 |
no outgoing calls
no test coverage detected