milvus/internal/timesync/timetick_watcher.go
sunby 67e6ea8051 Add data service
Signed-off-by: sunby <bingyi.sun@zilliz.com>
2021-01-15 17:09:41 +08:00

12 lines
177 B
Go

package timesync
import (
ms "github.com/zilliztech/milvus-distributed/internal/msgstream"
)
type TimeTickWatcher interface {
Watch(msg *ms.TimeTickMsg)
Start()
Close()
}