github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/pool/status.go (about)

     1  /* For license and copyright information please see LEGAL file in repository */
     2  
     3  package pool
     4  
     5  type PoolStatus int32
     6  
     7  const (
     8  	PoolStatus_Unset PoolStatus = iota
     9  	PoolStatus_Running
    10  	PoolStatus_Stopping
    11  	PoolStatus_Stopped
    12  )