package store
import "github.com/containerd/cri/pkg/store"
Index ¶
Variables ¶
var ( // ErrAlreadyExist is the error returned when data added in the store // already exists. // // This error has been DEPRECATED and will be removed in 1.5. Please switch // usage directly to `errdefs.ErrAlreadyExists`. ErrAlreadyExist = errdefs.ErrAlreadyExists // ErrNotExist is the error returned when data is not in the store. // // This error has been DEPRECATED and will be removed in 1.5. Please switch // usage directly to `errdefs.ErrNotFound`. ErrNotExist = errdefs.ErrNotFound )
Types ¶
type StopCh ¶
type StopCh struct {
// contains filtered or unexported fields
}
StopCh is used to propagate the stop information of a container.
func NewStopCh ¶
func NewStopCh() *StopCh
NewStopCh creates a stop channel. The channel is open by default.
func (*StopCh) Stop ¶
func (s *StopCh) Stop()
Stop close stopCh of the container.
func (*StopCh) Stopped ¶
func (s *StopCh) Stopped() <-chan struct{}
Stopped return the stopCh of the container as a readonly channel.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
pkg/store/container | |
pkg/store/image | |
pkg/store/label | |
pkg/store/sandbox | |
pkg/store/snapshot |
- Version
- v1.19.0 (latest)
- Published
- Aug 20, 2020
- Platform
- windows/amd64
- Imports
- 2 packages
- Last checked
- 2 months ago –
Tools for package owners.