// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // 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/buffer.h" #include "td/utils/common.h" #include "td/utils/Status.h" namespace td { class Td; class NetActor : public NetQueryCallback { public: NetActor(); void set_parent(ActorShared<> parent); void on_result(NetQueryPtr query) override; virtual void on_result(BufferSlice packet) { UNREACHABLE(); } virtual void on_error(Status status) { UNREACHABLE(); } virtual void on_result_finish() { } protected: Td *td_; ActorShared<> parent_; void send_query(NetQueryPtr query); }; } // namespace td