Runtime returns the runtime of the context.
()
| 198 | |
| 199 | // Runtime returns the runtime of the context. |
| 200 | func (ctx *Context) Runtime() *Runtime { |
| 201 | if ctx == nil { |
| 202 | return nil |
| 203 | } |
| 204 | return ctx.runtime |
| 205 | } |
| 206 | |
| 207 | // Free will free context and all associated objects. |
| 208 | func (ctx *Context) Close() { |
no outgoing calls