wheat-cache/pkg/lru/define.go

11 lines
158 B
Go
Raw Normal View History

2021-09-21 19:28:14 +08:00
package lru
2021-09-27 11:29:47 +08:00
type SingleWorkFunc func() interface{}
const (
OpEventName = "operateEvent"
CleEventName = "clearEvent"
WorkFuncEventCtxKey = "workFunc"
)