container_windows.go 455 B

123456789101112131415161718192021
  1. package libcontainer
  2. // State represents a running container's state
  3. type State struct {
  4. BaseState
  5. // Platform specific fields below here
  6. }
  7. // A libcontainer container object.
  8. //
  9. // Each container is thread-safe within the same process. Since a container can
  10. // be destroyed by a separate process, any function may return that the container
  11. // was not found.
  12. type Container interface {
  13. BaseContainer
  14. // Methods below here are platform specific
  15. }