Files
comaps/libs/platform/http_thread_callback.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

17 lines
343 B
C++

#pragma once
#include <cstdint>
namespace downloader
{
class IHttpThreadCallback
{
public:
virtual bool OnWrite(int64_t offset, void const * buffer, size_t size) = 0;
virtual void OnFinish(long httpOrErrorCode, int64_t begRange, int64_t endRange) = 0;
protected:
virtual ~IHttpThreadCallback() = default;
};
} // namespace downloader