package closer

Import Path
	github.com/pion/dtls/v3/internal/closer (on go.dev)

Dependency Relation
	imports one package, and imported by one package

Involved Source Files Package closer provides signaling channel for shutdown
Package-Level Type Names (only one)
/* sort by: | */
Closer allows for each signaling a channel for shutdown. Close sends a signal to trigger the ctx done channel. Done returns a channel signaling when it is done. Err returns an error of the context. func NewCloser() *Closer func NewCloserWithParent(ctx context.Context) *Closer
Package-Level Functions (total 2)
NewCloser creates a new instance of Closer.
NewCloserWithParent creates a new instance of Closer with a parent context.