* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
#pragma once
#include <cstdint>
template<typename N>
class InternalTimerService {
public:
virtual ~InternalTimerService() = default;
virtual int64_t currentProcessingTime() = 0;
virtual int64_t currentWatermark() = 0;
* Registers a timer to be fired when processing time passes the given time. The nameSpace you
* pass here will be provided when the timer fires.
*/
virtual void registerProcessingTimeTimer(N nameSpace, int64_t time) = 0;
virtual void deleteProcessingTimeTimer(N nameSpace, int64_t time) = 0;
virtual void registerEventTimeTimer(N nameSpace, int64_t time) = 0;
virtual void deleteEventTimeTimer(N nameSpace, int64_t time) = 0;
virtual void advanceWatermark(int64_t time) = 0;
virtual void deleteFirstEventTimeTimer() = 0;
};