* Events subsystem merged from `server/events.go` and `utils/jsonmessagepublisher.go` and moved to `events/events.go` * Only public interface for this subsystem is engine jobs * There is two new engine jobs - `log_event` and `subscribers_count` * There is auxiliary function `container.LogEvent` for logging events for containers Docker-DCO-1.1-Signed-off-by: Alexandr Morozov <lk4d4math@gmail.com> (github: LK4D4) [solomon@docker.com: resolve merge conflicts] Signed-off-by: Solomon Hykes <solomon@docker.com> Upstream-commit: 8d056423f8c433927089bd7eb6bc97abbc1ed502 Component: engine
6 lines
116 B
Go
6 lines
116 B
Go
package daemon
|
|
|
|
type Server interface {
|
|
IsRunning() bool // returns true if the server is currently in operation
|
|
}
|