2018-03-16 10:31:23 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-03-16 10:31:23 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
2018-03-16 13:33:44 +01:00
|
|
|
|
2018-03-16 10:31:23 +01:00
|
|
|
#include "td/telegram/net/NetQuery.h"
|
|
|
|
|
|
|
|
#include "td/actor/actor.h"
|
2018-03-16 13:33:44 +01:00
|
|
|
|
2018-03-16 10:31:23 +01:00
|
|
|
#include "td/utils/Time.h"
|
|
|
|
|
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
namespace td {
|
2018-03-16 13:33:44 +01:00
|
|
|
|
2021-07-04 04:58:54 +02:00
|
|
|
class DelayDispatcher final : public Actor {
|
2018-03-16 10:31:23 +01:00
|
|
|
public:
|
2020-08-26 23:52:01 +02:00
|
|
|
DelayDispatcher(double default_delay, ActorShared<> parent)
|
|
|
|
: default_delay_(default_delay), parent_(std::move(parent)) {
|
2018-03-16 13:33:44 +01:00
|
|
|
}
|
|
|
|
|
2018-03-16 10:31:23 +01:00
|
|
|
void send_with_callback(NetQueryPtr query, ActorShared<NetQueryCallback> callback);
|
2018-03-17 18:06:16 +01:00
|
|
|
void send_with_callback_and_delay(NetQueryPtr query, ActorShared<NetQueryCallback> callback, double delay);
|
2018-03-16 10:31:23 +01:00
|
|
|
|
2018-09-07 15:17:09 +02:00
|
|
|
void close_silent();
|
|
|
|
|
2018-03-16 10:31:23 +01:00
|
|
|
private:
|
|
|
|
struct Query {
|
|
|
|
NetQueryPtr net_query;
|
|
|
|
ActorShared<NetQueryCallback> callback;
|
2018-03-17 18:06:16 +01:00
|
|
|
double delay;
|
2018-03-16 10:31:23 +01:00
|
|
|
};
|
|
|
|
std::queue<Query> queue_;
|
|
|
|
Timestamp wakeup_at_;
|
2018-03-17 18:06:16 +01:00
|
|
|
double default_delay_;
|
2020-08-26 23:52:01 +02:00
|
|
|
ActorShared<> parent_;
|
2018-03-16 10:31:23 +01:00
|
|
|
|
2021-07-03 22:51:36 +02:00
|
|
|
void loop() final;
|
|
|
|
void tear_down() final;
|
2018-03-16 10:31:23 +01:00
|
|
|
};
|
2018-03-16 13:33:44 +01:00
|
|
|
|
2018-03-16 10:31:23 +01:00
|
|
|
} // namespace td
|