zworld-em/Plugins/sentry-unreal/Source/Sentry/Private/Interface/SentrySamplingContextInterface.h

16 lines
369 B
C
Raw Permalink Normal View History

2025-05-11 22:07:21 +08:00
// Copyright (c) 2024 Sentry. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class ISentryTransactionContext;
class ISentrySamplingContext
{
public:
virtual ~ISentrySamplingContext() = default;
virtual TSharedPtr<ISentryTransactionContext> GetTransactionContext() const = 0;
virtual TMap<FString, FString> GetCustomSamplingContext() const = 0;
};