mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
24 lines
623 B
C++
24 lines
623 B
C++
/*******************************************************************************
|
|
* copyright 上海赜睿信息科技有限公司(zilliz) - all rights reserved
|
|
* unauthorized copying of this file, via any medium is strictly prohibited.
|
|
* proprietary and confidential.
|
|
******************************************************************************/
|
|
#pragma once
|
|
|
|
#include "Event.h"
|
|
|
|
|
|
namespace zilliz {
|
|
namespace milvus {
|
|
namespace engine {
|
|
|
|
class StartUpEvent : public Event {
|
|
public:
|
|
explicit
|
|
StartUpEvent(std::weak_ptr<Resource> resource)
|
|
: Event(EventType::START_UP, std::move(resource)) {}
|
|
};
|
|
|
|
}
|
|
}
|
|
} |