Documentation ¶
Overview ¶
Package close provides utilities for closing resources.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNotCloseable is returned when trying to close a resource // that does not conform to a closeable interface. ErrNotCloseable = errors.New("not a closeable resource") )
Functions ¶
Types ¶
type SimpleCloser ¶
type SimpleCloser interface {
Close()
}
SimpleCloser is a resource that can be closed without returning a result.
Click to show internal directories.
Click to hide internal directories.