2018-12-31 20:04:05 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2018-12-31 20:04:05 +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
|
|
|
|
|
|
|
|
#include "td/telegram/files/ResourceState.h"
|
|
|
|
#include "td/telegram/net/NetQuery.h"
|
|
|
|
|
2018-07-03 21:29:04 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class ResourceManager;
|
|
|
|
|
|
|
|
class FileLoaderActor : public NetQueryCallback {
|
|
|
|
public:
|
2020-10-05 17:07:23 +02:00
|
|
|
virtual void set_resource_manager(ActorShared<ResourceManager> resource_manager) = 0;
|
2018-01-20 12:47:53 +01:00
|
|
|
virtual void update_priority(int8 priority) = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual void update_resources(const ResourceState &other) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|