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 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
39
40} // namespace Bedrock
Definition EnableNonOwnerReferences.h:7
Definition _HeaderOutputPredefine.h:299
Definition SentryUploadManager.h:21
Definition SessionInfo.h:7
Definition Path.h:12
Definition TaskGroup.h:55
Definition PlatformRuntimeInfo.h:7