You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sentry/api/sentry.api
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ public final class io/sentry/Baggage {
35
35
public fun <init> (Ljava/util/Map;Ljava/lang/String;ZZLio/sentry/ILogger;)V
36
36
public fun forceSetSampleRate (Ljava/lang/String;)V
37
37
public fun freeze ()V
38
-
public static fun fromEvent (Lio/sentry/SentryEvent;Lio/sentry/SentryOptions;)Lio/sentry/Baggage;
38
+
public static fun fromEvent (Lio/sentry/SentryBaseEvent;Ljava/lang/String;Lio/sentry/SentryOptions;)Lio/sentry/Baggage;
39
39
public static fun fromHeader (Ljava/lang/String;)Lio/sentry/Baggage;
40
40
public static fun fromHeader (Ljava/lang/String;Lio/sentry/ILogger;)Lio/sentry/Baggage;
41
41
public static fun fromHeader (Ljava/lang/String;ZLio/sentry/ILogger;)Lio/sentry/Baggage;
@@ -342,6 +342,7 @@ public final class io/sentry/DataCategory : java/lang/Enum {
342
342
public static final field Attachment Lio/sentry/DataCategory;
343
343
public static final field Default Lio/sentry/DataCategory;
344
344
public static final field Error Lio/sentry/DataCategory;
345
+
public static final field Feedback Lio/sentry/DataCategory;
345
346
public static final field Monitor Lio/sentry/DataCategory;
346
347
public static final field Profile Lio/sentry/DataCategory;
347
348
public static final field Replay Lio/sentry/DataCategory;
@@ -958,7 +959,7 @@ public abstract interface class io/sentry/ISentryClient {
958
959
public fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
959
960
public fun captureException (Ljava/lang/Throwable;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
960
961
public fun captureException (Ljava/lang/Throwable;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
961
-
public fun captureFeedback (Lio/sentry/protocol/Feedback;Lio/sentry/Hint;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
962
+
public abstract fun captureFeedback (Lio/sentry/protocol/Feedback;Lio/sentry/Hint;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
962
963
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;)Lio/sentry/protocol/SentryId;
963
964
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
964
965
public abstract fun captureReplayEvent (Lio/sentry/SentryReplayEvent;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
@@ -2526,6 +2527,7 @@ public final class io/sentry/SentryClient : io/sentry/ISentryClient {
2526
2527
public fun captureCheckIn (Lio/sentry/CheckIn;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
2527
2528
public fun captureEnvelope (Lio/sentry/SentryEnvelope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
2528
2529
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
2530
+
public fun captureFeedback (Lio/sentry/protocol/Feedback;Lio/sentry/Hint;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
2529
2531
public fun captureReplayEvent (Lio/sentry/SentryReplayEvent;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
2530
2532
public fun captureSession (Lio/sentry/Session;Lio/sentry/Hint;)V
2531
2533
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/TraceContext;Lio/sentry/IScope;Lio/sentry/Hint;Lio/sentry/ProfilingTraceData;)Lio/sentry/protocol/SentryId;
@@ -2868,6 +2870,7 @@ public class io/sentry/SentryOptions {
2868
2870
public fun getBeforeBreadcrumb ()Lio/sentry/SentryOptions$BeforeBreadcrumbCallback;
2869
2871
public fun getBeforeEnvelopeCallback ()Lio/sentry/SentryOptions$BeforeEnvelopeCallback;
2870
2872
public fun getBeforeSend ()Lio/sentry/SentryOptions$BeforeSendCallback;
2873
+
public fun getBeforeSendFeedback ()Lio/sentry/SentryOptions$BeforeSendCallback;
2871
2874
public fun getBeforeSendReplay ()Lio/sentry/SentryOptions$BeforeSendReplayCallback;
2872
2875
public fun getBeforeSendTransaction ()Lio/sentry/SentryOptions$BeforeSendTransactionCallback;
2873
2876
public fun getBundleIds ()Ljava/util/Set;
@@ -2989,6 +2992,7 @@ public class io/sentry/SentryOptions {
2989
2992
public fun setBeforeBreadcrumb (Lio/sentry/SentryOptions$BeforeBreadcrumbCallback;)V
2990
2993
public fun setBeforeEnvelopeCallback (Lio/sentry/SentryOptions$BeforeEnvelopeCallback;)V
2991
2994
public fun setBeforeSend (Lio/sentry/SentryOptions$BeforeSendCallback;)V
2995
+
public fun setBeforeSendFeedback (Lio/sentry/SentryOptions$BeforeSendCallback;)V
2992
2996
public fun setBeforeSendReplay (Lio/sentry/SentryOptions$BeforeSendReplayCallback;)V
2993
2997
public fun setBeforeSendTransaction (Lio/sentry/SentryOptions$BeforeSendTransactionCallback;)V
0 commit comments