LeviLamina
Loading...
Searching...
No Matches
SentryUploadManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/Async.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8#include "mc/platform/Result.h"
9
10// auto generated forward declare list
11// clang-format off
12class TaskGroup;
13namespace Bedrock { class SessionInfo; }
14namespace Bedrock { struct PlatformRuntimeInfo; }
15namespace Core { class Path; }
16// clang-format on
17
18namespace Bedrock {
19
21 public ::Bedrock::ImplBase<::Bedrock::SentryUploadManager> {
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ::std::string getParameters(::Bedrock::SessionInfo const&, ::Bedrock::PlatformRuntimeInfo const*) const = 0;
26
27 virtual ::Bedrock::Threading::Async<::Bedrock::Result<void>>
28 uploadMinidump(::TaskGroup&, ::Core::Path const&, ::std::string const&) const = 0;
29
30 virtual ::std::string const& getMinidumpUploadUri() const = 0;
31
32 virtual ~SentryUploadManager() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
41
42} // namespace Bedrock
Definition EnableNonOwnerReferences.h:7
Definition _HeaderOutputPredefine.h:257
Definition SentryUploadManager.h:21
Definition SessionInfo.h:7
Definition Path.h:10
Definition TaskGroup.h:53
Definition PlatformRuntimeInfo.h:7