shared project

This commit is contained in:
geek 2017-04-26 15:46:04 +09:00
parent 24aefd98aa
commit 515b618aba

View File

@ -2,19 +2,18 @@ package queue
import (
"container/heap"
"time"
"loafle.com/overflow/agent_api/observer"
"github.com/prometheus/common/log"
"loafle.com/overflow/agent_api/observer"
"time"
)
type EventType int
const (
DATA_TYPE EventType = 0
EVENT_TYPE EventType = 1
)
type item struct {
value interface{}
priority int