github.com/runcom/containerd@v0.0.0-20160708090337-9bff9f934c0d/supervisor/types.go (about)

     1  package supervisor
     2  
     3  // State constants used in Event types
     4  const (
     5  	StateStart        = "start-container"
     6  	StatePause        = "pause"
     7  	StateResume       = "resume"
     8  	StateExit         = "exit"
     9  	StateStartProcess = "start-process"
    10  	StateOOM          = "oom"
    11  	StateLive         = "live"
    12  )