MCPcopy
hub / github.com/ContainerSSH/ContainerSSH / pool

Struct pool

service/pool_impl.go:11–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9)
10
11type pool struct {
12 mutex *sync.Mutex
13 services []Service
14 lifecycles map[Service]Lifecycle
15 serviceStates map[Service]State
16 lifecycleFactory LifecycleFactory
17 running bool
18 startupComplete chan struct{}
19 stopComplete chan struct{}
20 lastError error
21 stopping bool
22 logger log.Logger
23}
24
25func (p *pool) String() string {
26 return "Service Pool"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected