LeviLamina
Loading...
Searching...
No Matches
AzureFileStorageEndpoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/DownloaderResult.h"
7
8// auto generated forward declare list
9// clang-format off
11class TaskGroup;
12namespace Bedrock::Http { class Request; }
13namespace Bedrock::Http { class Response; }
14namespace Core { class Path; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~AzureFileStorageEndpoint() = default;
36
37 // vIndex: 1
38 virtual ::Bedrock::Http::Request makeListFilesRequest(::Core::Path const&) const;
39
40 // vIndex: 2
41 virtual void
42 sendListFilesRequest(::Bedrock::Http::Request&, ::TaskGroup&, ::std::function<void(::Bedrock::Http::Response const&, ::std::string const&)>)
43 const;
44
45 // vIndex: 3
46 virtual void
47 downloadSingleFile(::Core::Path const&, ::AzureFileDownloader&, ::std::function<void(::DownloaderResult)>) const;
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59
60 // NOLINTEND
61};
Definition AzureFileDownloader.h:8
Definition AzureFileStorageEndpoint.h:17
Definition Request.h:15
Definition Response.h:12
Definition Path.h:15
Definition Path.h:16
Definition TaskGroup.h:22
Definition Alias.h:14