MCPcopy
hub / github.com/containerd/containerd / DiffService

Method DiffService

client/client.go:759–766  ·  view source on GitHub ↗

DiffService returns the underlying Differ

()

Source from the content-addressed store, hash-verified

757
758// DiffService returns the underlying Differ
759func (c *Client) DiffService() DiffService {
760 if c.diffService != nil {
761 return c.diffService
762 }
763 c.connMu.Lock()
764 defer c.connMu.Unlock()
765 return NewDiffServiceFromClient(diffapi.NewDiffClient(c.conn))
766}
767
768// IntrospectionService returns the underlying Introspection Client
769func (c *Client) IntrospectionService() introspection.Service {

Callers 5

PullMethod · 0.95
UnpackMethod · 0.80
WithRestoreRWFunction · 0.80
WithCheckpointRWFunction · 0.80
checkpointRWSnapshotMethod · 0.80

Calls 3

NewDiffServiceFromClientFunction · 0.85
LockMethod · 0.65
UnlockMethod · 0.65

Tested by

no test coverage detected