Files
comaps/libs/platform/http_thread_callback.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

17 lines
344 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