bigsheeper c9c8fb9def Close pulsar channel
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2020-11-12 11:18:23 +08:00

15 lines
258 B
Go

package timesync
import "github.com/zilliztech/milvus-distributed/internal/util/typeutil"
type (
UniqueID = typeutil.UniqueID
Timestamp = typeutil.Timestamp
)
type TimeTickBarrier interface {
GetTimeTick() (Timestamp, error)
Start() error
Close()
}