mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
12 lines
246 B
Go
12 lines
246 B
Go
package timesync
|
|
|
|
import "github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
|
|
|
type UniqueID = typeutil.UniqueID
|
|
type Timestamp = typeutil.Timestamp
|
|
|
|
type TimeTickBarrier interface {
|
|
GetTimeTick() (Timestamp,error)
|
|
Start() error
|
|
}
|