aboutsummaryrefslogtreecommitdiff
path: root/include/AsyncImageLoader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/AsyncImageLoader.hpp')
-rw-r--r--include/AsyncImageLoader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/AsyncImageLoader.hpp b/include/AsyncImageLoader.hpp
index 7fe7c07..689ec5f 100644
--- a/include/AsyncImageLoader.hpp
+++ b/include/AsyncImageLoader.hpp
@@ -3,12 +3,12 @@
#include "../include/Storage.hpp"
#include "../include/MessageQueue.hpp"
#include "../include/FileAnalyzer.hpp"
+#include "../include/AsyncTask.hpp"
#include <SFML/System/Vector2.hpp>
#include <SFML/Graphics/Texture.hpp>
#include <SFML/System/Clock.hpp>
#include <string>
#include <memory>
-#include <thread>
#include <unordered_map>
namespace QuickMedia {
@@ -67,8 +67,8 @@ namespace QuickMedia {
private:
bool loading_image[NUM_IMAGE_LOAD_THREADS];
// TODO: Use curl single-threaded multi-download feature instead
- std::thread download_image_thread[NUM_IMAGE_LOAD_THREADS];
- std::thread load_image_thread;
+ AsyncTask<void> download_image_thread[NUM_IMAGE_LOAD_THREADS];
+ AsyncTask<void> load_image_thread;
MessageQueue<ThumbnailLoadData> image_load_queue;
std::unordered_map<std::string, std::shared_ptr<ThumbnailData>> thumbnails;
size_t counter = 0;