2024-03-07 13:44:15 +01:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2024-03-07 15:18:11 +01:00
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
2024-03-07 13:44:15 +01:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2024-03-07 15:18:11 +01:00
|
|
|
#include "td/utils/WaitFreeHashMap.h"
|
2024-03-07 13:44:15 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
|
|
|
class BusinessConnectionManager final : public Actor {
|
|
|
|
public:
|
|
|
|
BusinessConnectionManager(Td *td, ActorShared<> parent);
|
2024-03-07 15:18:11 +01:00
|
|
|
BusinessConnectionManager(const BusinessConnectionManager &) = delete;
|
|
|
|
BusinessConnectionManager &operator=(const BusinessConnectionManager &) = delete;
|
|
|
|
BusinessConnectionManager(BusinessConnectionManager &&) = delete;
|
|
|
|
BusinessConnectionManager &operator=(BusinessConnectionManager &&) = delete;
|
|
|
|
~BusinessConnectionManager() final;
|
|
|
|
|
|
|
|
void on_update_bot_business_connect(telegram_api::object_ptr<telegram_api::botBusinessConnection> &&connection);
|
2024-03-07 13:44:15 +01:00
|
|
|
|
|
|
|
private:
|
2024-03-07 15:18:11 +01:00
|
|
|
struct BusinessConnection;
|
|
|
|
|
|
|
|
WaitFreeHashMap<string, unique_ptr<BusinessConnection>> business_connections_;
|
|
|
|
|
2024-03-07 13:44:15 +01:00
|
|
|
void tear_down() final;
|
|
|
|
|
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|