DeleteTask.cpp 593 字节
Newer Older
W
wxyu 已提交
1 2 3 4 5 6
/*******************************************************************************
 * Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 ******************************************************************************/

7
#include "DeleteTask.h"
W
wxyu 已提交
8 9 10 11 12

namespace zilliz {
namespace milvus {
namespace engine {

13 14 15 16
void
XDeleteTask::Load(LoadType type, uint8_t device_id) {

}
W
wxyu 已提交
17

18 19
void
XDeleteTask::Execute() {
W
wxyu 已提交
20

21
}
W
wxyu 已提交
22

W
wxyu 已提交
23 24 25 26 27
TaskPtr
XDeleteTask::Clone() {
    return nullptr;
}

W
wxyu 已提交
28 29 30
}
}
}