agent_api/observer/const.go

18 lines
190 B
Go
Raw Normal View History

2017-04-14 08:14:42 +00:00
package observer
import "strconv"
type KEY int
func (k KEY) String() string {
return strconv.Itoa(int(k))
}
const (
ADD_CRAWLER = KEY(iota)
REMOVE_CRAWLER
2017-04-26 09:50:02 +00:00
DATA_QUEUE
EVENT_QUEUE
2017-04-14 08:14:42 +00:00
)