MCPcopy Create free account
hub / github.com/docker/docker-language-server / Manager

Struct Manager

internal/pkg/document/manager.go:24–30  ·  view source on GitHub ↗

Manager provides simplified file read/write operations for the LSP server.

Source from the content-addressed store, hash-verified

22
23// Manager provides simplified file read/write operations for the LSP server.
24type Manager struct {
25 mu sync.Mutex
26 docs DocumentMap
27 diagnosticsProcessing map[uri.URI]*documentLock
28 newDocFunc NewDocumentFunc
29 readDocFunc ReadDocumentFunc
30}
31
32type documentLock struct {
33 mu sync.Mutex

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected