This repository has been archived on 2021-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
tdesktop-new-cmake/src/TelegramLibs/base/timer_rpl.h

35 lines
890 B
C++

// This file is part of Desktop App Toolkit,
// a set of libraries for developing nice desktop applications.
//
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#pragma once
#include "base/timer.h"
namespace base {
[[nodiscard]] inline auto timer_once(crl::time delay) {
return rpl::make_producer<>([=](const auto &consumer) {
auto result = rpl::lifetime();
result.make_state<base::Timer>([=] {
consumer.put_next(rpl::empty_value());
consumer.put_done();
})->callOnce(delay);
return result;
});
}
[[nodiscard]] inline auto timer_each(crl::time delay) {
return rpl::make_producer<>([=](const auto &consumer) {
auto result = rpl::lifetime();
result.make_state<base::Timer>([=] {
consumer.put_next(rpl::empty_value());
})->callEach(delay);
return result;
});
}
} // namespace base