mirror of https://github.com/milvus-io/milvus.git
12 lines
177 B
Go
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()
|
||
|
}
|