mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 10:52:56 +08:00
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()
|
|
}
|