mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
fd9e42d3ed
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
45 lines
697 B
Go
45 lines
697 B
Go
package proxynode
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/errors"
|
|
)
|
|
|
|
type Condition interface {
|
|
WaitToFinish() error
|
|
Notify(err error)
|
|
Ctx() context.Context
|
|
}
|
|
|
|
type TaskCondition struct {
|
|
done chan error
|
|
ctx context.Context
|
|
}
|
|
|
|
func (tc *TaskCondition) WaitToFinish() error {
|
|
for {
|
|
select {
|
|
case <-tc.ctx.Done():
|
|
return errors.New("timeout")
|
|
case err := <-tc.done:
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
func (tc *TaskCondition) Notify(err error) {
|
|
tc.done <- err
|
|
}
|
|
|
|
func (tc *TaskCondition) Ctx() context.Context {
|
|
return tc.ctx
|
|
}
|
|
|
|
func NewTaskCondition(ctx context.Context) *TaskCondition {
|
|
return &TaskCondition{
|
|
done: make(chan error),
|
|
ctx: ctx,
|
|
}
|
|
}
|