# Functions

Go is a convenience function that starts a new Context that runs the given function -- like starting a goroutine.
Writes pretty and indented debug state info of a given verbosity level.
Periodically calls PrintContextTree() to the context's logger.
Starts a new Context with no parent Context.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

# Structs

No description provided by the author
Task is a parameter block used to start a new Context and contains hooks for each stage of the Context's lifecycle.

# Interfaces

Context is an expanded form of a context.Context offering, featuring: - integrated logging, removing guesswork of which Context logged what - "child" Contexts such that Close() will cause a Context's children to close - automatic idle-close of Contexts after a period of inactivity - the OnClosing() hook, allowing cleanup to occur when a Context is closed but before its parent is closed.