tdlight/td/telegram/DelayDispatcher.h
levlam 6e880f7ea0 Enable DelayDispacher. Improve errors and logging.
GitOrigin-RevId: e8d648e14183fe4a9409555eff5c6e167b5bcca2
2018-03-16 15:33:44 +03:00

39 lines
822 B
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// 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
#include "td/telegram/net/NetQuery.h"
#include "td/actor/actor.h"
#include "td/utils/Time.h"
#include <queue>
namespace td {
class DelayDispatcher : public Actor {
public:
explicit DelayDispatcher(double delay) : delay_(delay) {
}
void send_with_callback(NetQueryPtr query, ActorShared<NetQueryCallback> callback);
private:
struct Query {
NetQueryPtr net_query;
ActorShared<NetQueryCallback> callback;
};
std::queue<Query> queue_;
Timestamp wakeup_at_;
double delay_;
void loop() override;
};
} // namespace td