mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +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
|
|
}
|