-
-
Notifications
You must be signed in to change notification settings - Fork 452
/
Copy pathsentry.api
6798 lines (6271 loc) · 333 KB
/
sentry.api
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
public final class io/sentry/AsyncHttpTransportFactory : io/sentry/ITransportFactory {
public fun <init> ()V
public fun create (Lio/sentry/SentryOptions;Lio/sentry/RequestDetails;)Lio/sentry/transport/ITransport;
}
public final class io/sentry/Attachment {
public fun <init> (Lio/sentry/JsonSerializable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V
public fun <init> (Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)V
public fun <init> ([BLjava/lang/String;)V
public fun <init> ([BLjava/lang/String;Ljava/lang/String;)V
public fun <init> ([BLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V
public fun <init> ([BLjava/lang/String;Ljava/lang/String;Z)V
public static fun fromScreenshot ([B)Lio/sentry/Attachment;
public static fun fromThreadDump ([B)Lio/sentry/Attachment;
public static fun fromViewHierarchy (Lio/sentry/protocol/ViewHierarchy;)Lio/sentry/Attachment;
public fun getAttachmentType ()Ljava/lang/String;
public fun getBytes ()[B
public fun getContentType ()Ljava/lang/String;
public fun getFilename ()Ljava/lang/String;
public fun getPathname ()Ljava/lang/String;
public fun getSerializable ()Lio/sentry/JsonSerializable;
}
public abstract interface class io/sentry/BackfillingEventProcessor : io/sentry/EventProcessor {
}
public final class io/sentry/Baggage {
public fun <init> (Lio/sentry/Baggage;)V
public fun <init> (Lio/sentry/ILogger;)V
public fun <init> (Ljava/util/Map;Ljava/lang/Double;Ljava/lang/Double;Ljava/lang/String;ZZLio/sentry/ILogger;)V
public fun forceSetSampleRate (Ljava/lang/Double;)V
public fun freeze ()V
public static fun fromEvent (Lio/sentry/SentryEvent;Lio/sentry/SentryOptions;)Lio/sentry/Baggage;
public static fun fromHeader (Ljava/lang/String;)Lio/sentry/Baggage;
public static fun fromHeader (Ljava/lang/String;Lio/sentry/ILogger;)Lio/sentry/Baggage;
public static fun fromHeader (Ljava/lang/String;ZLio/sentry/ILogger;)Lio/sentry/Baggage;
public static fun fromHeader (Ljava/util/List;)Lio/sentry/Baggage;
public static fun fromHeader (Ljava/util/List;Lio/sentry/ILogger;)Lio/sentry/Baggage;
public static fun fromHeader (Ljava/util/List;ZLio/sentry/ILogger;)Lio/sentry/Baggage;
public fun get (Ljava/lang/String;)Ljava/lang/String;
public fun getEnvironment ()Ljava/lang/String;
public fun getPublicKey ()Ljava/lang/String;
public fun getRelease ()Ljava/lang/String;
public fun getReplayId ()Ljava/lang/String;
public fun getSampleRand ()Ljava/lang/Double;
public fun getSampleRate ()Ljava/lang/Double;
public fun getSampled ()Ljava/lang/String;
public fun getThirdPartyHeader ()Ljava/lang/String;
public fun getTraceId ()Ljava/lang/String;
public fun getTransaction ()Ljava/lang/String;
public fun getUnknown ()Ljava/util/Map;
public fun getUserId ()Ljava/lang/String;
public fun isMutable ()Z
public fun isShouldFreeze ()Z
public fun set (Ljava/lang/String;Ljava/lang/String;)V
public fun setEnvironment (Ljava/lang/String;)V
public fun setPublicKey (Ljava/lang/String;)V
public fun setRelease (Ljava/lang/String;)V
public fun setReplayId (Ljava/lang/String;)V
public fun setSampleRand (Ljava/lang/Double;)V
public fun setSampleRate (Ljava/lang/Double;)V
public fun setSampled (Ljava/lang/String;)V
public fun setTraceId (Ljava/lang/String;)V
public fun setTransaction (Ljava/lang/String;)V
public fun setUserId (Ljava/lang/String;)V
public fun setValuesFromSamplingDecision (Lio/sentry/TracesSamplingDecision;)V
public fun setValuesFromScope (Lio/sentry/IScope;Lio/sentry/SentryOptions;)V
public fun setValuesFromTransaction (Lio/sentry/protocol/SentryId;Lio/sentry/protocol/SentryId;Lio/sentry/SentryOptions;Lio/sentry/TracesSamplingDecision;Ljava/lang/String;Lio/sentry/protocol/TransactionNameSource;)V
public fun toHeaderString (Ljava/lang/String;)Ljava/lang/String;
public fun toTraceContext ()Lio/sentry/TraceContext;
}
public final class io/sentry/Baggage$DSCKeys {
public static final field ALL Ljava/util/List;
public static final field ENVIRONMENT Ljava/lang/String;
public static final field PUBLIC_KEY Ljava/lang/String;
public static final field RELEASE Ljava/lang/String;
public static final field REPLAY_ID Ljava/lang/String;
public static final field SAMPLED Ljava/lang/String;
public static final field SAMPLE_RAND Ljava/lang/String;
public static final field SAMPLE_RATE Ljava/lang/String;
public static final field TRACE_ID Ljava/lang/String;
public static final field TRANSACTION Ljava/lang/String;
public static final field USER_ID Ljava/lang/String;
public fun <init> ()V
}
public final class io/sentry/BaggageHeader {
public static final field BAGGAGE_HEADER Ljava/lang/String;
public fun <init> (Ljava/lang/String;)V
public static fun fromBaggageAndOutgoingHeader (Lio/sentry/Baggage;Ljava/util/List;)Lio/sentry/BaggageHeader;
public fun getName ()Ljava/lang/String;
public fun getValue ()Ljava/lang/String;
}
public final class io/sentry/Breadcrumb : io/sentry/JsonSerializable, io/sentry/JsonUnknown, java/lang/Comparable {
public fun <init> ()V
public fun <init> (J)V
public fun <init> (Ljava/lang/String;)V
public fun <init> (Ljava/util/Date;)V
public fun compareTo (Lio/sentry/Breadcrumb;)I
public synthetic fun compareTo (Ljava/lang/Object;)I
public static fun debug (Ljava/lang/String;)Lio/sentry/Breadcrumb;
public fun equals (Ljava/lang/Object;)Z
public static fun error (Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun fromMap (Ljava/util/Map;Lio/sentry/SentryOptions;)Lio/sentry/Breadcrumb;
public fun getCategory ()Ljava/lang/String;
public fun getData ()Ljava/util/Map;
public fun getData (Ljava/lang/String;)Ljava/lang/Object;
public fun getLevel ()Lio/sentry/SentryLevel;
public fun getMessage ()Ljava/lang/String;
public fun getOrigin ()Ljava/lang/String;
public fun getTimestamp ()Ljava/util/Date;
public fun getType ()Ljava/lang/String;
public fun getUnknown ()Ljava/util/Map;
public static fun graphqlDataFetcher (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun graphqlDataLoader (Ljava/lang/Iterable;Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun graphqlOperation (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public fun hashCode ()I
public static fun http (Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun http (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Integer;)Lio/sentry/Breadcrumb;
public static fun info (Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun navigation (Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun query (Ljava/lang/String;)Lio/sentry/Breadcrumb;
public fun removeData (Ljava/lang/String;)V
public fun serialize (Lio/sentry/ObjectWriter;Lio/sentry/ILogger;)V
public fun setCategory (Ljava/lang/String;)V
public fun setData (Ljava/lang/String;Ljava/lang/Object;)V
public fun setLevel (Lio/sentry/SentryLevel;)V
public fun setMessage (Ljava/lang/String;)V
public fun setOrigin (Ljava/lang/String;)V
public fun setType (Ljava/lang/String;)V
public fun setUnknown (Ljava/util/Map;)V
public static fun transaction (Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun ui (Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun user (Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun userInteraction (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lio/sentry/Breadcrumb;
public static fun userInteraction (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lio/sentry/Breadcrumb;
public static fun userInteraction (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)Lio/sentry/Breadcrumb;
}
public final class io/sentry/Breadcrumb$Deserializer : io/sentry/JsonDeserializer {
public fun <init> ()V
public fun deserialize (Lio/sentry/ObjectReader;Lio/sentry/ILogger;)Lio/sentry/Breadcrumb;
public synthetic fun deserialize (Lio/sentry/ObjectReader;Lio/sentry/ILogger;)Ljava/lang/Object;
}
public final class io/sentry/Breadcrumb$JsonKeys {
public static final field CATEGORY Ljava/lang/String;
public static final field DATA Ljava/lang/String;
public static final field LEVEL Ljava/lang/String;
public static final field MESSAGE Ljava/lang/String;
public static final field ORIGIN Ljava/lang/String;
public static final field TIMESTAMP Ljava/lang/String;
public static final field TYPE Ljava/lang/String;
public fun <init> ()V
}
public final class io/sentry/BuildConfig {
public static final field SENTRY_JAVA_SDK_NAME Ljava/lang/String;
public static final field VERSION_NAME Ljava/lang/String;
}
public final class io/sentry/CheckIn : io/sentry/JsonSerializable, io/sentry/JsonUnknown {
public fun <init> (Lio/sentry/protocol/SentryId;Ljava/lang/String;Lio/sentry/CheckInStatus;)V
public fun <init> (Lio/sentry/protocol/SentryId;Ljava/lang/String;Ljava/lang/String;)V
public fun <init> (Ljava/lang/String;Lio/sentry/CheckInStatus;)V
public fun getCheckInId ()Lio/sentry/protocol/SentryId;
public fun getContexts ()Lio/sentry/MonitorContexts;
public fun getDuration ()Ljava/lang/Double;
public fun getEnvironment ()Ljava/lang/String;
public fun getMonitorConfig ()Lio/sentry/MonitorConfig;
public fun getMonitorSlug ()Ljava/lang/String;
public fun getRelease ()Ljava/lang/String;
public fun getStatus ()Ljava/lang/String;
public fun getUnknown ()Ljava/util/Map;
public fun serialize (Lio/sentry/ObjectWriter;Lio/sentry/ILogger;)V
public fun setDuration (Ljava/lang/Double;)V
public fun setEnvironment (Ljava/lang/String;)V
public fun setMonitorConfig (Lio/sentry/MonitorConfig;)V
public fun setMonitorSlug (Ljava/lang/String;)V
public fun setRelease (Ljava/lang/String;)V
public fun setStatus (Lio/sentry/CheckInStatus;)V
public fun setStatus (Ljava/lang/String;)V
public fun setUnknown (Ljava/util/Map;)V
}
public final class io/sentry/CheckIn$Deserializer : io/sentry/JsonDeserializer {
public fun <init> ()V
public fun deserialize (Lio/sentry/ObjectReader;Lio/sentry/ILogger;)Lio/sentry/CheckIn;
public synthetic fun deserialize (Lio/sentry/ObjectReader;Lio/sentry/ILogger;)Ljava/lang/Object;
}
public final class io/sentry/CheckIn$JsonKeys {
public static final field CHECK_IN_ID Ljava/lang/String;
public static final field CONTEXTS Ljava/lang/String;
public static final field DURATION Ljava/lang/String;
public static final field ENVIRONMENT Ljava/lang/String;
public static final field MONITOR_CONFIG Ljava/lang/String;
public static final field MONITOR_SLUG Ljava/lang/String;
public static final field RELEASE Ljava/lang/String;
public static final field STATUS Ljava/lang/String;
public fun <init> ()V
}
public final class io/sentry/CheckInStatus : java/lang/Enum {
public static final field ERROR Lio/sentry/CheckInStatus;
public static final field IN_PROGRESS Lio/sentry/CheckInStatus;
public static final field OK Lio/sentry/CheckInStatus;
public fun apiName ()Ljava/lang/String;
public static fun valueOf (Ljava/lang/String;)Lio/sentry/CheckInStatus;
public static fun values ()[Lio/sentry/CheckInStatus;
}
public final class io/sentry/CombinedContextsView : io/sentry/protocol/Contexts {
public fun <init> (Lio/sentry/protocol/Contexts;Lio/sentry/protocol/Contexts;Lio/sentry/protocol/Contexts;Lio/sentry/ScopeType;)V
public fun containsKey (Ljava/lang/Object;)Z
public fun entrySet ()Ljava/util/Set;
public fun get (Ljava/lang/Object;)Ljava/lang/Object;
public fun getApp ()Lio/sentry/protocol/App;
public fun getBrowser ()Lio/sentry/protocol/Browser;
public fun getDevice ()Lio/sentry/protocol/Device;
public fun getGpu ()Lio/sentry/protocol/Gpu;
public fun getOperatingSystem ()Lio/sentry/protocol/OperatingSystem;
public fun getResponse ()Lio/sentry/protocol/Response;
public fun getRuntime ()Lio/sentry/protocol/SentryRuntime;
public fun getSize ()I
public fun getSpring ()Lio/sentry/protocol/Spring;
public fun getTrace ()Lio/sentry/SpanContext;
public fun isEmpty ()Z
public fun keys ()Ljava/util/Enumeration;
public fun put (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
public fun putAll (Lio/sentry/protocol/Contexts;)V
public fun putAll (Ljava/util/Map;)V
public fun remove (Ljava/lang/Object;)Ljava/lang/Object;
public fun serialize (Lio/sentry/ObjectWriter;Lio/sentry/ILogger;)V
public fun set (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
public fun setApp (Lio/sentry/protocol/App;)V
public fun setBrowser (Lio/sentry/protocol/Browser;)V
public fun setDevice (Lio/sentry/protocol/Device;)V
public fun setGpu (Lio/sentry/protocol/Gpu;)V
public fun setOperatingSystem (Lio/sentry/protocol/OperatingSystem;)V
public fun setResponse (Lio/sentry/protocol/Response;)V
public fun setRuntime (Lio/sentry/protocol/SentryRuntime;)V
public fun setSpring (Lio/sentry/protocol/Spring;)V
public fun setTrace (Lio/sentry/SpanContext;)V
public fun size ()I
public fun withResponse (Lio/sentry/util/HintUtils$SentryConsumer;)V
}
public final class io/sentry/CombinedScopeView : io/sentry/IScope {
public fun <init> (Lio/sentry/IScope;Lio/sentry/IScope;Lio/sentry/IScope;)V
public fun addAttachment (Lio/sentry/Attachment;)V
public fun addBreadcrumb (Lio/sentry/Breadcrumb;)V
public fun addBreadcrumb (Lio/sentry/Breadcrumb;Lio/sentry/Hint;)V
public fun addEventProcessor (Lio/sentry/EventProcessor;)V
public fun assignTraceContext (Lio/sentry/SentryEvent;)V
public fun bindClient (Lio/sentry/ISentryClient;)V
public fun clear ()V
public fun clearAttachments ()V
public fun clearBreadcrumbs ()V
public fun clearSession ()V
public fun clearTransaction ()V
public fun clone ()Lio/sentry/IScope;
public synthetic fun clone ()Ljava/lang/Object;
public fun endSession ()Lio/sentry/Session;
public fun getAttachments ()Ljava/util/List;
public fun getBreadcrumbs ()Ljava/util/Queue;
public fun getClient ()Lio/sentry/ISentryClient;
public fun getContexts ()Lio/sentry/protocol/Contexts;
public fun getEventProcessors ()Ljava/util/List;
public fun getEventProcessorsWithOrder ()Ljava/util/List;
public fun getExtras ()Ljava/util/Map;
public fun getFingerprint ()Ljava/util/List;
public fun getLastEventId ()Lio/sentry/protocol/SentryId;
public fun getLevel ()Lio/sentry/SentryLevel;
public fun getOptions ()Lio/sentry/SentryOptions;
public fun getPropagationContext ()Lio/sentry/PropagationContext;
public fun getReplayId ()Lio/sentry/protocol/SentryId;
public fun getRequest ()Lio/sentry/protocol/Request;
public fun getScreen ()Ljava/lang/String;
public fun getSession ()Lio/sentry/Session;
public fun getSpan ()Lio/sentry/ISpan;
public fun getTags ()Ljava/util/Map;
public fun getTransaction ()Lio/sentry/ITransaction;
public fun getTransactionName ()Ljava/lang/String;
public fun getUser ()Lio/sentry/protocol/User;
public fun removeContexts (Ljava/lang/String;)V
public fun removeExtra (Ljava/lang/String;)V
public fun removeTag (Ljava/lang/String;)V
public fun replaceOptions (Lio/sentry/SentryOptions;)V
public fun setActiveSpan (Lio/sentry/ISpan;)V
public fun setContexts (Ljava/lang/String;Ljava/lang/Boolean;)V
public fun setContexts (Ljava/lang/String;Ljava/lang/Character;)V
public fun setContexts (Ljava/lang/String;Ljava/lang/Number;)V
public fun setContexts (Ljava/lang/String;Ljava/lang/Object;)V
public fun setContexts (Ljava/lang/String;Ljava/lang/String;)V
public fun setContexts (Ljava/lang/String;Ljava/util/Collection;)V
public fun setContexts (Ljava/lang/String;[Ljava/lang/Object;)V
public fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
public fun setFingerprint (Ljava/util/List;)V
public fun setLastEventId (Lio/sentry/protocol/SentryId;)V
public fun setLevel (Lio/sentry/SentryLevel;)V
public fun setPropagationContext (Lio/sentry/PropagationContext;)V
public fun setReplayId (Lio/sentry/protocol/SentryId;)V
public fun setRequest (Lio/sentry/protocol/Request;)V
public fun setScreen (Ljava/lang/String;)V
public fun setSpanContext (Ljava/lang/Throwable;Lio/sentry/ISpan;Ljava/lang/String;)V
public fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public fun setTransaction (Lio/sentry/ITransaction;)V
public fun setTransaction (Ljava/lang/String;)V
public fun setUser (Lio/sentry/protocol/User;)V
public fun startSession ()Lio/sentry/Scope$SessionPair;
public fun withPropagationContext (Lio/sentry/Scope$IWithPropagationContext;)Lio/sentry/PropagationContext;
public fun withSession (Lio/sentry/Scope$IWithSession;)Lio/sentry/Session;
public fun withTransaction (Lio/sentry/Scope$IWithTransaction;)V
}
public abstract interface class io/sentry/CompositePerformanceCollector {
public abstract fun close ()V
public abstract fun onSpanFinished (Lio/sentry/ISpan;)V
public abstract fun onSpanStarted (Lio/sentry/ISpan;)V
public abstract fun start (Lio/sentry/ITransaction;)V
public abstract fun start (Ljava/lang/String;)V
public abstract fun stop (Lio/sentry/ITransaction;)Ljava/util/List;
public abstract fun stop (Ljava/lang/String;)Ljava/util/List;
}
public final class io/sentry/CpuCollectionData {
public fun <init> (DLio/sentry/SentryDate;)V
public fun getCpuUsagePercentage ()D
public fun getTimestamp ()Lio/sentry/SentryDate;
}
public final class io/sentry/CustomSamplingContext {
public fun <init> ()V
public fun get (Ljava/lang/String;)Ljava/lang/Object;
public fun getData ()Ljava/util/Map;
public fun set (Ljava/lang/String;Ljava/lang/Object;)V
}
public final class io/sentry/DataCategory : java/lang/Enum {
public static final field All Lio/sentry/DataCategory;
public static final field Attachment Lio/sentry/DataCategory;
public static final field Default Lio/sentry/DataCategory;
public static final field Error Lio/sentry/DataCategory;
public static final field Monitor Lio/sentry/DataCategory;
public static final field Profile Lio/sentry/DataCategory;
public static final field ProfileChunk Lio/sentry/DataCategory;
public static final field Replay Lio/sentry/DataCategory;
public static final field Security Lio/sentry/DataCategory;
public static final field Session Lio/sentry/DataCategory;
public static final field Span Lio/sentry/DataCategory;
public static final field Transaction Lio/sentry/DataCategory;
public static final field Unknown Lio/sentry/DataCategory;
public static final field UserReport Lio/sentry/DataCategory;
public fun getCategory ()Ljava/lang/String;
public static fun valueOf (Ljava/lang/String;)Lio/sentry/DataCategory;
public static fun values ()[Lio/sentry/DataCategory;
}
public final class io/sentry/DateUtils {
public static fun dateToNanos (Ljava/util/Date;)J
public static fun dateToSeconds (Ljava/util/Date;)D
public static fun getCurrentDateTime ()Ljava/util/Date;
public static fun getDateTime (J)Ljava/util/Date;
public static fun getDateTime (Ljava/lang/String;)Ljava/util/Date;
public static fun getDateTimeWithMillisPrecision (Ljava/lang/String;)Ljava/util/Date;
public static fun getTimestamp (Ljava/util/Date;)Ljava/lang/String;
public static fun millisToNanos (J)J
public static fun millisToSeconds (D)D
public static fun nanosToDate (J)Ljava/util/Date;
public static fun nanosToMillis (D)D
public static fun nanosToSeconds (J)D
public static fun secondsToNanos (J)J
public static fun toUtilDate (Lio/sentry/SentryDate;)Ljava/util/Date;
public static fun toUtilDateNotNull (Lio/sentry/SentryDate;)Ljava/util/Date;
}
public final class io/sentry/DeduplicateMultithreadedEventProcessor : io/sentry/EventProcessor {
public fun <init> (Lio/sentry/SentryOptions;)V
public fun getOrder ()Ljava/lang/Long;
public fun process (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/SentryEvent;
}
public final class io/sentry/DefaultCompositePerformanceCollector : io/sentry/CompositePerformanceCollector {
public fun <init> (Lio/sentry/SentryOptions;)V
public fun close ()V
public fun onSpanFinished (Lio/sentry/ISpan;)V
public fun onSpanStarted (Lio/sentry/ISpan;)V
public fun start (Lio/sentry/ITransaction;)V
public fun start (Ljava/lang/String;)V
public fun stop (Lio/sentry/ITransaction;)Ljava/util/List;
public fun stop (Ljava/lang/String;)Ljava/util/List;
}
public final class io/sentry/DefaultScopesStorage : io/sentry/IScopesStorage {
public fun <init> ()V
public fun close ()V
public fun get ()Lio/sentry/IScopes;
public fun init ()V
public fun set (Lio/sentry/IScopes;)Lio/sentry/ISentryLifecycleToken;
}
public final class io/sentry/DefaultSpanFactory : io/sentry/ISpanFactory {
public fun <init> ()V
public fun createSpan (Lio/sentry/IScopes;Lio/sentry/SpanOptions;Lio/sentry/SpanContext;Lio/sentry/ISpan;)Lio/sentry/ISpan;
public fun createTransaction (Lio/sentry/TransactionContext;Lio/sentry/IScopes;Lio/sentry/TransactionOptions;Lio/sentry/CompositePerformanceCollector;)Lio/sentry/ITransaction;
}
public final class io/sentry/DefaultVersionDetector : io/sentry/IVersionDetector {
public fun <init> (Lio/sentry/SentryOptions;)V
public fun checkForMixedVersions ()Z
}
public final class io/sentry/DiagnosticLogger : io/sentry/ILogger {
public fun <init> (Lio/sentry/SentryOptions;Lio/sentry/ILogger;)V
public fun getLogger ()Lio/sentry/ILogger;
public fun isEnabled (Lio/sentry/SentryLevel;)Z
public fun log (Lio/sentry/SentryLevel;Ljava/lang/String;Ljava/lang/Throwable;)V
public fun log (Lio/sentry/SentryLevel;Ljava/lang/String;[Ljava/lang/Object;)V
public fun log (Lio/sentry/SentryLevel;Ljava/lang/Throwable;Ljava/lang/String;[Ljava/lang/Object;)V
}
public final class io/sentry/DsnUtil {
public fun <init> ()V
public static fun urlContainsDsnHost (Lio/sentry/SentryOptions;Ljava/lang/String;)Z
}
public final class io/sentry/DuplicateEventDetectionEventProcessor : io/sentry/EventProcessor {
public fun <init> (Lio/sentry/SentryOptions;)V
public fun getOrder ()Ljava/lang/Long;
public fun process (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/SentryEvent;
}
public final class io/sentry/EnvelopeReader : io/sentry/IEnvelopeReader {
public fun <init> (Lio/sentry/ISerializer;)V
public fun read (Ljava/io/InputStream;)Lio/sentry/SentryEnvelope;
}
public final class io/sentry/EnvelopeSender : io/sentry/IEnvelopeSender {
public fun <init> (Lio/sentry/IScopes;Lio/sentry/ISerializer;Lio/sentry/ILogger;JI)V
public synthetic fun processDirectory (Ljava/io/File;)V
public fun processEnvelopeFile (Ljava/lang/String;Lio/sentry/Hint;)V
}
public abstract interface class io/sentry/EventProcessor {
public fun getOrder ()Ljava/lang/Long;
public fun process (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/SentryEvent;
public fun process (Lio/sentry/SentryReplayEvent;Lio/sentry/Hint;)Lio/sentry/SentryReplayEvent;
public fun process (Lio/sentry/protocol/SentryTransaction;Lio/sentry/Hint;)Lio/sentry/protocol/SentryTransaction;
}
public final class io/sentry/ExperimentalOptions {
public fun <init> (ZLio/sentry/protocol/SdkVersion;)V
public fun getProfileLifecycle ()Lio/sentry/ProfileLifecycle;
public fun getProfileSessionSampleRate ()Ljava/lang/Double;
public fun isStartProfilerOnAppStart ()Z
public fun setProfileLifecycle (Lio/sentry/ProfileLifecycle;)V
public fun setProfileSessionSampleRate (Ljava/lang/Double;)V
public fun setStartProfilerOnAppStart (Z)V
}
public final class io/sentry/ExternalOptions {
public fun <init> ()V
public fun addBundleId (Ljava/lang/String;)V
public fun addContextTag (Ljava/lang/String;)V
public fun addIgnoredExceptionForType (Ljava/lang/Class;)V
public fun addInAppExclude (Ljava/lang/String;)V
public fun addInAppInclude (Ljava/lang/String;)V
public fun addTracePropagationTarget (Ljava/lang/String;)V
public static fun from (Lio/sentry/config/PropertiesProvider;Lio/sentry/ILogger;)Lio/sentry/ExternalOptions;
public fun getBundleIds ()Ljava/util/Set;
public fun getContextTags ()Ljava/util/List;
public fun getCron ()Lio/sentry/SentryOptions$Cron;
public fun getDebug ()Ljava/lang/Boolean;
public fun getDist ()Ljava/lang/String;
public fun getDsn ()Ljava/lang/String;
public fun getEnableDeduplication ()Ljava/lang/Boolean;
public fun getEnableUncaughtExceptionHandler ()Ljava/lang/Boolean;
public fun getEnvironment ()Ljava/lang/String;
public fun getIdleTimeout ()Ljava/lang/Long;
public fun getIgnoredCheckIns ()Ljava/util/List;
public fun getIgnoredErrors ()Ljava/util/List;
public fun getIgnoredExceptionsForType ()Ljava/util/Set;
public fun getIgnoredTransactions ()Ljava/util/List;
public fun getInAppExcludes ()Ljava/util/List;
public fun getInAppIncludes ()Ljava/util/List;
public fun getMaxRequestBodySize ()Lio/sentry/SentryOptions$RequestSize;
public fun getPrintUncaughtStackTrace ()Ljava/lang/Boolean;
public fun getProfilesSampleRate ()Ljava/lang/Double;
public fun getProguardUuid ()Ljava/lang/String;
public fun getProxy ()Lio/sentry/SentryOptions$Proxy;
public fun getRelease ()Ljava/lang/String;
public fun getSendClientReports ()Ljava/lang/Boolean;
public fun getServerName ()Ljava/lang/String;
public fun getSpotlightConnectionUrl ()Ljava/lang/String;
public fun getTags ()Ljava/util/Map;
public fun getTracePropagationTargets ()Ljava/util/List;
public fun getTracesSampleRate ()Ljava/lang/Double;
public fun isCaptureOpenTelemetryEvents ()Ljava/lang/Boolean;
public fun isEnableBackpressureHandling ()Ljava/lang/Boolean;
public fun isEnablePrettySerializationOutput ()Ljava/lang/Boolean;
public fun isEnableSpotlight ()Ljava/lang/Boolean;
public fun isEnabled ()Ljava/lang/Boolean;
public fun isForceInit ()Ljava/lang/Boolean;
public fun isGlobalHubMode ()Ljava/lang/Boolean;
public fun isSendDefaultPii ()Ljava/lang/Boolean;
public fun isSendModules ()Ljava/lang/Boolean;
public fun setCaptureOpenTelemetryEvents (Ljava/lang/Boolean;)V
public fun setCron (Lio/sentry/SentryOptions$Cron;)V
public fun setDebug (Ljava/lang/Boolean;)V
public fun setDist (Ljava/lang/String;)V
public fun setDsn (Ljava/lang/String;)V
public fun setEnableBackpressureHandling (Ljava/lang/Boolean;)V
public fun setEnableDeduplication (Ljava/lang/Boolean;)V
public fun setEnablePrettySerializationOutput (Ljava/lang/Boolean;)V
public fun setEnableSpotlight (Ljava/lang/Boolean;)V
public fun setEnableUncaughtExceptionHandler (Ljava/lang/Boolean;)V
public fun setEnabled (Ljava/lang/Boolean;)V
public fun setEnvironment (Ljava/lang/String;)V
public fun setForceInit (Ljava/lang/Boolean;)V
public fun setGlobalHubMode (Ljava/lang/Boolean;)V
public fun setIdleTimeout (Ljava/lang/Long;)V
public fun setIgnoredCheckIns (Ljava/util/List;)V
public fun setIgnoredErrors (Ljava/util/List;)V
public fun setIgnoredTransactions (Ljava/util/List;)V
public fun setMaxRequestBodySize (Lio/sentry/SentryOptions$RequestSize;)V
public fun setPrintUncaughtStackTrace (Ljava/lang/Boolean;)V
public fun setProfilesSampleRate (Ljava/lang/Double;)V
public fun setProguardUuid (Ljava/lang/String;)V
public fun setProxy (Lio/sentry/SentryOptions$Proxy;)V
public fun setRelease (Ljava/lang/String;)V
public fun setSendClientReports (Ljava/lang/Boolean;)V
public fun setSendDefaultPii (Ljava/lang/Boolean;)V
public fun setSendModules (Ljava/lang/Boolean;)V
public fun setServerName (Ljava/lang/String;)V
public fun setSpotlightConnectionUrl (Ljava/lang/String;)V
public fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public fun setTracesSampleRate (Ljava/lang/Double;)V
}
public final class io/sentry/FilterString {
public fun <init> (Ljava/lang/String;)V
public fun equals (Ljava/lang/Object;)Z
public fun getFilterString ()Ljava/lang/String;
public fun hashCode ()I
public fun matches (Ljava/lang/String;)Z
}
public final class io/sentry/FullyDisplayedReporter {
public static fun getInstance ()Lio/sentry/FullyDisplayedReporter;
public fun registerFullyDrawnListener (Lio/sentry/FullyDisplayedReporter$FullyDisplayedReporterListener;)V
public fun reportFullyDrawn ()V
}
public abstract interface class io/sentry/FullyDisplayedReporter$FullyDisplayedReporterListener {
public abstract fun onFullyDrawn ()V
}
public final class io/sentry/Hint {
public fun <init> ()V
public fun addAttachment (Lio/sentry/Attachment;)V
public fun addAttachments (Ljava/util/List;)V
public fun clear ()V
public fun clearAttachments ()V
public fun get (Ljava/lang/String;)Ljava/lang/Object;
public fun getAs (Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object;
public fun getAttachments ()Ljava/util/List;
public fun getReplayRecording ()Lio/sentry/ReplayRecording;
public fun getScreenshot ()Lio/sentry/Attachment;
public fun getThreadDump ()Lio/sentry/Attachment;
public fun getViewHierarchy ()Lio/sentry/Attachment;
public fun remove (Ljava/lang/String;)V
public fun replaceAttachments (Ljava/util/List;)V
public fun set (Ljava/lang/String;Ljava/lang/Object;)V
public fun setReplayRecording (Lio/sentry/ReplayRecording;)V
public fun setScreenshot (Lio/sentry/Attachment;)V
public fun setThreadDump (Lio/sentry/Attachment;)V
public fun setViewHierarchy (Lio/sentry/Attachment;)V
public static fun withAttachment (Lio/sentry/Attachment;)Lio/sentry/Hint;
public static fun withAttachments (Ljava/util/List;)Lio/sentry/Hint;
}
public final class io/sentry/HttpStatusCodeRange {
public static final field DEFAULT_MAX I
public static final field DEFAULT_MIN I
public fun <init> (I)V
public fun <init> (II)V
public fun isInRange (I)Z
}
public final class io/sentry/HubAdapter : io/sentry/IHub {
public fun addBreadcrumb (Lio/sentry/Breadcrumb;)V
public fun addBreadcrumb (Lio/sentry/Breadcrumb;Lio/sentry/Hint;)V
public fun bindClient (Lio/sentry/ISentryClient;)V
public fun captureCheckIn (Lio/sentry/CheckIn;)Lio/sentry/protocol/SentryId;
public fun captureEnvelope (Lio/sentry/SentryEnvelope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureProfileChunk (Lio/sentry/ProfileChunk;)Lio/sentry/protocol/SentryId;
public fun captureReplay (Lio/sentry/SentryReplayEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/TraceContext;Lio/sentry/Hint;Lio/sentry/ProfilingTraceData;)Lio/sentry/protocol/SentryId;
public fun captureUserFeedback (Lio/sentry/UserFeedback;)V
public fun clearBreadcrumbs ()V
public fun clone ()Lio/sentry/IHub;
public synthetic fun clone ()Ljava/lang/Object;
public fun close ()V
public fun close (Z)V
public fun configureScope (Lio/sentry/ScopeType;Lio/sentry/ScopeCallback;)V
public fun continueTrace (Ljava/lang/String;Ljava/util/List;)Lio/sentry/TransactionContext;
public fun endSession ()V
public fun flush (J)V
public fun forkedCurrentScope (Ljava/lang/String;)Lio/sentry/IScopes;
public fun forkedRootScopes (Ljava/lang/String;)Lio/sentry/IScopes;
public fun forkedScopes (Ljava/lang/String;)Lio/sentry/IScopes;
public fun getBaggage ()Lio/sentry/BaggageHeader;
public fun getGlobalScope ()Lio/sentry/IScope;
public static fun getInstance ()Lio/sentry/HubAdapter;
public fun getIsolationScope ()Lio/sentry/IScope;
public fun getLastEventId ()Lio/sentry/protocol/SentryId;
public fun getOptions ()Lio/sentry/SentryOptions;
public fun getParentScopes ()Lio/sentry/IScopes;
public fun getRateLimiter ()Lio/sentry/transport/RateLimiter;
public fun getScope ()Lio/sentry/IScope;
public fun getSpan ()Lio/sentry/ISpan;
public fun getTraceparent ()Lio/sentry/SentryTraceHeader;
public fun getTransaction ()Lio/sentry/ITransaction;
public fun isAncestorOf (Lio/sentry/IScopes;)Z
public fun isCrashedLastRun ()Ljava/lang/Boolean;
public fun isEnabled ()Z
public fun isHealthy ()Z
public fun makeCurrent ()Lio/sentry/ISentryLifecycleToken;
public fun popScope ()V
public fun pushIsolationScope ()Lio/sentry/ISentryLifecycleToken;
public fun pushScope ()Lio/sentry/ISentryLifecycleToken;
public fun removeExtra (Ljava/lang/String;)V
public fun removeTag (Ljava/lang/String;)V
public fun reportFullyDisplayed ()V
public fun setActiveSpan (Lio/sentry/ISpan;)V
public fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
public fun setFingerprint (Ljava/util/List;)V
public fun setLevel (Lio/sentry/SentryLevel;)V
public fun setSpanContext (Ljava/lang/Throwable;Lio/sentry/ISpan;Ljava/lang/String;)V
public fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public fun setTransaction (Ljava/lang/String;)V
public fun setUser (Lio/sentry/protocol/User;)V
public fun startProfiler ()V
public fun startSession ()V
public fun startTransaction (Lio/sentry/TransactionContext;Lio/sentry/TransactionOptions;)Lio/sentry/ITransaction;
public fun stopProfiler ()V
public fun withIsolationScope (Lio/sentry/ScopeCallback;)V
public fun withScope (Lio/sentry/ScopeCallback;)V
}
public final class io/sentry/HubScopesWrapper : io/sentry/IHub {
public fun <init> (Lio/sentry/IScopes;)V
public fun addBreadcrumb (Lio/sentry/Breadcrumb;)V
public fun addBreadcrumb (Lio/sentry/Breadcrumb;Lio/sentry/Hint;)V
public fun bindClient (Lio/sentry/ISentryClient;)V
public fun captureCheckIn (Lio/sentry/CheckIn;)Lio/sentry/protocol/SentryId;
public fun captureEnvelope (Lio/sentry/SentryEnvelope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureProfileChunk (Lio/sentry/ProfileChunk;)Lio/sentry/protocol/SentryId;
public fun captureReplay (Lio/sentry/SentryReplayEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/TraceContext;Lio/sentry/Hint;Lio/sentry/ProfilingTraceData;)Lio/sentry/protocol/SentryId;
public fun captureUserFeedback (Lio/sentry/UserFeedback;)V
public fun clearBreadcrumbs ()V
public fun clone ()Lio/sentry/IHub;
public synthetic fun clone ()Ljava/lang/Object;
public fun close ()V
public fun close (Z)V
public fun configureScope (Lio/sentry/ScopeType;Lio/sentry/ScopeCallback;)V
public fun continueTrace (Ljava/lang/String;Ljava/util/List;)Lio/sentry/TransactionContext;
public fun endSession ()V
public fun flush (J)V
public fun forkedCurrentScope (Ljava/lang/String;)Lio/sentry/IScopes;
public fun forkedRootScopes (Ljava/lang/String;)Lio/sentry/IScopes;
public fun forkedScopes (Ljava/lang/String;)Lio/sentry/IScopes;
public fun getBaggage ()Lio/sentry/BaggageHeader;
public fun getGlobalScope ()Lio/sentry/IScope;
public fun getIsolationScope ()Lio/sentry/IScope;
public fun getLastEventId ()Lio/sentry/protocol/SentryId;
public fun getOptions ()Lio/sentry/SentryOptions;
public fun getParentScopes ()Lio/sentry/IScopes;
public fun getRateLimiter ()Lio/sentry/transport/RateLimiter;
public fun getScope ()Lio/sentry/IScope;
public fun getSpan ()Lio/sentry/ISpan;
public fun getTraceparent ()Lio/sentry/SentryTraceHeader;
public fun getTransaction ()Lio/sentry/ITransaction;
public fun isAncestorOf (Lio/sentry/IScopes;)Z
public fun isCrashedLastRun ()Ljava/lang/Boolean;
public fun isEnabled ()Z
public fun isHealthy ()Z
public fun makeCurrent ()Lio/sentry/ISentryLifecycleToken;
public fun popScope ()V
public fun pushIsolationScope ()Lio/sentry/ISentryLifecycleToken;
public fun pushScope ()Lio/sentry/ISentryLifecycleToken;
public fun removeExtra (Ljava/lang/String;)V
public fun removeTag (Ljava/lang/String;)V
public fun reportFullyDisplayed ()V
public fun setActiveSpan (Lio/sentry/ISpan;)V
public fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
public fun setFingerprint (Ljava/util/List;)V
public fun setLevel (Lio/sentry/SentryLevel;)V
public fun setSpanContext (Ljava/lang/Throwable;Lio/sentry/ISpan;Ljava/lang/String;)V
public fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public fun setTransaction (Ljava/lang/String;)V
public fun setUser (Lio/sentry/protocol/User;)V
public fun startProfiler ()V
public fun startSession ()V
public fun startTransaction (Lio/sentry/TransactionContext;Lio/sentry/TransactionOptions;)Lio/sentry/ITransaction;
public fun stopProfiler ()V
public fun withIsolationScope (Lio/sentry/ScopeCallback;)V
public fun withScope (Lio/sentry/ScopeCallback;)V
}
public abstract interface class io/sentry/IConnectionStatusProvider {
public abstract fun addConnectionStatusObserver (Lio/sentry/IConnectionStatusProvider$IConnectionStatusObserver;)Z
public abstract fun getConnectionStatus ()Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
public abstract fun getConnectionType ()Ljava/lang/String;
public abstract fun removeConnectionStatusObserver (Lio/sentry/IConnectionStatusProvider$IConnectionStatusObserver;)V
}
public final class io/sentry/IConnectionStatusProvider$ConnectionStatus : java/lang/Enum {
public static final field CONNECTED Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
public static final field DISCONNECTED Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
public static final field NO_PERMISSION Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
public static final field UNKNOWN Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
public static fun valueOf (Ljava/lang/String;)Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
public static fun values ()[Lio/sentry/IConnectionStatusProvider$ConnectionStatus;
}
public abstract interface class io/sentry/IConnectionStatusProvider$IConnectionStatusObserver {
public abstract fun onConnectionStatusChanged (Lio/sentry/IConnectionStatusProvider$ConnectionStatus;)V
}
public abstract interface class io/sentry/IContinuousProfiler {
public abstract fun close ()V
public abstract fun getProfilerId ()Lio/sentry/protocol/SentryId;
public abstract fun isRunning ()Z
public abstract fun reevaluateSampling ()V
public abstract fun startProfiler (Lio/sentry/ProfileLifecycle;Lio/sentry/TracesSampler;)V
public abstract fun stopProfiler (Lio/sentry/ProfileLifecycle;)V
}
public abstract interface class io/sentry/IEnvelopeReader {
public abstract fun read (Ljava/io/InputStream;)Lio/sentry/SentryEnvelope;
}
public abstract interface class io/sentry/IEnvelopeSender {
public abstract fun processEnvelopeFile (Ljava/lang/String;Lio/sentry/Hint;)V
}
public abstract interface class io/sentry/IHub : io/sentry/IScopes {
}
public abstract interface class io/sentry/ILogger {
public abstract fun isEnabled (Lio/sentry/SentryLevel;)Z
public abstract fun log (Lio/sentry/SentryLevel;Ljava/lang/String;Ljava/lang/Throwable;)V
public abstract fun log (Lio/sentry/SentryLevel;Ljava/lang/String;[Ljava/lang/Object;)V
public abstract fun log (Lio/sentry/SentryLevel;Ljava/lang/Throwable;Ljava/lang/String;[Ljava/lang/Object;)V
}
public abstract interface class io/sentry/IMemoryCollector {
public abstract fun collect ()Lio/sentry/MemoryCollectionData;
}
public abstract interface class io/sentry/IOptionsObserver {
public abstract fun setDist (Ljava/lang/String;)V
public abstract fun setEnvironment (Ljava/lang/String;)V
public abstract fun setProguardUuid (Ljava/lang/String;)V
public abstract fun setRelease (Ljava/lang/String;)V
public abstract fun setReplayErrorSampleRate (Ljava/lang/Double;)V
public abstract fun setSdkVersion (Lio/sentry/protocol/SdkVersion;)V
public abstract fun setTags (Ljava/util/Map;)V
}
public abstract interface class io/sentry/IPerformanceCollector {
}
public abstract interface class io/sentry/IPerformanceContinuousCollector : io/sentry/IPerformanceCollector {
public abstract fun clear ()V
public abstract fun onSpanFinished (Lio/sentry/ISpan;)V
public abstract fun onSpanStarted (Lio/sentry/ISpan;)V
}
public abstract interface class io/sentry/IPerformanceSnapshotCollector : io/sentry/IPerformanceCollector {
public abstract fun collect (Lio/sentry/PerformanceCollectionData;)V
public abstract fun setup ()V
}
public abstract interface class io/sentry/IScope {
public abstract fun addAttachment (Lio/sentry/Attachment;)V
public abstract fun addBreadcrumb (Lio/sentry/Breadcrumb;)V
public abstract fun addBreadcrumb (Lio/sentry/Breadcrumb;Lio/sentry/Hint;)V
public abstract fun addEventProcessor (Lio/sentry/EventProcessor;)V
public abstract fun assignTraceContext (Lio/sentry/SentryEvent;)V
public abstract fun bindClient (Lio/sentry/ISentryClient;)V
public abstract fun clear ()V
public abstract fun clearAttachments ()V
public abstract fun clearBreadcrumbs ()V
public abstract fun clearSession ()V
public abstract fun clearTransaction ()V
public abstract fun clone ()Lio/sentry/IScope;
public abstract fun endSession ()Lio/sentry/Session;
public abstract fun getAttachments ()Ljava/util/List;
public abstract fun getBreadcrumbs ()Ljava/util/Queue;
public abstract fun getClient ()Lio/sentry/ISentryClient;
public abstract fun getContexts ()Lio/sentry/protocol/Contexts;
public abstract fun getEventProcessors ()Ljava/util/List;
public abstract fun getEventProcessorsWithOrder ()Ljava/util/List;
public abstract fun getExtras ()Ljava/util/Map;
public abstract fun getFingerprint ()Ljava/util/List;
public abstract fun getLastEventId ()Lio/sentry/protocol/SentryId;
public abstract fun getLevel ()Lio/sentry/SentryLevel;
public abstract fun getOptions ()Lio/sentry/SentryOptions;
public abstract fun getPropagationContext ()Lio/sentry/PropagationContext;
public abstract fun getReplayId ()Lio/sentry/protocol/SentryId;
public abstract fun getRequest ()Lio/sentry/protocol/Request;
public abstract fun getScreen ()Ljava/lang/String;
public abstract fun getSession ()Lio/sentry/Session;
public abstract fun getSpan ()Lio/sentry/ISpan;
public abstract fun getTags ()Ljava/util/Map;
public abstract fun getTransaction ()Lio/sentry/ITransaction;
public abstract fun getTransactionName ()Ljava/lang/String;
public abstract fun getUser ()Lio/sentry/protocol/User;
public abstract fun removeContexts (Ljava/lang/String;)V
public abstract fun removeExtra (Ljava/lang/String;)V
public abstract fun removeTag (Ljava/lang/String;)V
public abstract fun replaceOptions (Lio/sentry/SentryOptions;)V
public abstract fun setActiveSpan (Lio/sentry/ISpan;)V
public abstract fun setContexts (Ljava/lang/String;Ljava/lang/Boolean;)V
public abstract fun setContexts (Ljava/lang/String;Ljava/lang/Character;)V
public abstract fun setContexts (Ljava/lang/String;Ljava/lang/Number;)V
public abstract fun setContexts (Ljava/lang/String;Ljava/lang/Object;)V
public abstract fun setContexts (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setContexts (Ljava/lang/String;Ljava/util/Collection;)V
public abstract fun setContexts (Ljava/lang/String;[Ljava/lang/Object;)V
public abstract fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setFingerprint (Ljava/util/List;)V
public abstract fun setLastEventId (Lio/sentry/protocol/SentryId;)V
public abstract fun setLevel (Lio/sentry/SentryLevel;)V
public abstract fun setPropagationContext (Lio/sentry/PropagationContext;)V
public abstract fun setReplayId (Lio/sentry/protocol/SentryId;)V
public abstract fun setRequest (Lio/sentry/protocol/Request;)V
public abstract fun setScreen (Ljava/lang/String;)V
public abstract fun setSpanContext (Ljava/lang/Throwable;Lio/sentry/ISpan;Ljava/lang/String;)V
public abstract fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setTransaction (Lio/sentry/ITransaction;)V
public abstract fun setTransaction (Ljava/lang/String;)V
public abstract fun setUser (Lio/sentry/protocol/User;)V
public abstract fun startSession ()Lio/sentry/Scope$SessionPair;
public abstract fun withPropagationContext (Lio/sentry/Scope$IWithPropagationContext;)Lio/sentry/PropagationContext;
public abstract fun withSession (Lio/sentry/Scope$IWithSession;)Lio/sentry/Session;
public abstract fun withTransaction (Lio/sentry/Scope$IWithTransaction;)V
}
public abstract interface class io/sentry/IScopeObserver {
public abstract fun addBreadcrumb (Lio/sentry/Breadcrumb;)V
public abstract fun removeExtra (Ljava/lang/String;)V
public abstract fun removeTag (Ljava/lang/String;)V
public abstract fun setBreadcrumbs (Ljava/util/Collection;)V
public abstract fun setContexts (Lio/sentry/protocol/Contexts;)V
public abstract fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setExtras (Ljava/util/Map;)V
public abstract fun setFingerprint (Ljava/util/Collection;)V
public abstract fun setLevel (Lio/sentry/SentryLevel;)V
public abstract fun setReplayId (Lio/sentry/protocol/SentryId;)V
public abstract fun setRequest (Lio/sentry/protocol/Request;)V
public abstract fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setTags (Ljava/util/Map;)V
public abstract fun setTrace (Lio/sentry/SpanContext;Lio/sentry/IScope;)V
public abstract fun setTransaction (Ljava/lang/String;)V
public abstract fun setUser (Lio/sentry/protocol/User;)V
}
public abstract interface class io/sentry/IScopes {
public abstract fun addBreadcrumb (Lio/sentry/Breadcrumb;)V
public abstract fun addBreadcrumb (Lio/sentry/Breadcrumb;Lio/sentry/Hint;)V
public fun addBreadcrumb (Ljava/lang/String;)V
public fun addBreadcrumb (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun bindClient (Lio/sentry/ISentryClient;)V
public abstract fun captureCheckIn (Lio/sentry/CheckIn;)Lio/sentry/protocol/SentryId;
public fun captureEnvelope (Lio/sentry/SentryEnvelope;)Lio/sentry/protocol/SentryId;
public abstract fun captureEnvelope (Lio/sentry/SentryEnvelope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;)Lio/sentry/protocol/SentryId;
public abstract fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public abstract fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;)Lio/sentry/protocol/SentryId;
public abstract fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public abstract fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public abstract fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;)Lio/sentry/protocol/SentryId;
public abstract fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;Lio/sentry/ScopeCallback;)Lio/sentry/protocol/SentryId;
public abstract fun captureProfileChunk (Lio/sentry/ProfileChunk;)Lio/sentry/protocol/SentryId;
public abstract fun captureReplay (Lio/sentry/SentryReplayEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/TraceContext;)Lio/sentry/protocol/SentryId;
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/TraceContext;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public abstract fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/TraceContext;Lio/sentry/Hint;Lio/sentry/ProfilingTraceData;)Lio/sentry/protocol/SentryId;
public abstract fun captureUserFeedback (Lio/sentry/UserFeedback;)V
public abstract fun clearBreadcrumbs ()V
public abstract fun clone ()Lio/sentry/IHub;
public abstract fun close ()V
public abstract fun close (Z)V
public fun configureScope (Lio/sentry/ScopeCallback;)V
public abstract fun configureScope (Lio/sentry/ScopeType;Lio/sentry/ScopeCallback;)V
public abstract fun continueTrace (Ljava/lang/String;Ljava/util/List;)Lio/sentry/TransactionContext;
public abstract fun endSession ()V
public abstract fun flush (J)V
public abstract fun forkedCurrentScope (Ljava/lang/String;)Lio/sentry/IScopes;
public abstract fun forkedRootScopes (Ljava/lang/String;)Lio/sentry/IScopes;
public abstract fun forkedScopes (Ljava/lang/String;)Lio/sentry/IScopes;
public abstract fun getBaggage ()Lio/sentry/BaggageHeader;
public abstract fun getGlobalScope ()Lio/sentry/IScope;
public abstract fun getIsolationScope ()Lio/sentry/IScope;
public abstract fun getLastEventId ()Lio/sentry/protocol/SentryId;
public abstract fun getOptions ()Lio/sentry/SentryOptions;
public abstract fun getParentScopes ()Lio/sentry/IScopes;
public abstract fun getRateLimiter ()Lio/sentry/transport/RateLimiter;
public abstract fun getScope ()Lio/sentry/IScope;
public abstract fun getSpan ()Lio/sentry/ISpan;
public abstract fun getTraceparent ()Lio/sentry/SentryTraceHeader;
public abstract fun getTransaction ()Lio/sentry/ITransaction;
public abstract fun isAncestorOf (Lio/sentry/IScopes;)Z
public abstract fun isCrashedLastRun ()Ljava/lang/Boolean;
public abstract fun isEnabled ()Z
public abstract fun isHealthy ()Z
public fun isNoOp ()Z
public abstract fun makeCurrent ()Lio/sentry/ISentryLifecycleToken;
public abstract fun popScope ()V
public abstract fun pushIsolationScope ()Lio/sentry/ISentryLifecycleToken;
public abstract fun pushScope ()Lio/sentry/ISentryLifecycleToken;
public abstract fun removeExtra (Ljava/lang/String;)V
public abstract fun removeTag (Ljava/lang/String;)V
public abstract fun reportFullyDisplayed ()V
public abstract fun setActiveSpan (Lio/sentry/ISpan;)V
public abstract fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setFingerprint (Ljava/util/List;)V
public abstract fun setLevel (Lio/sentry/SentryLevel;)V
public abstract fun setSpanContext (Ljava/lang/Throwable;Lio/sentry/ISpan;Ljava/lang/String;)V
public abstract fun setTag (Ljava/lang/String;Ljava/lang/String;)V
public abstract fun setTransaction (Ljava/lang/String;)V
public abstract fun setUser (Lio/sentry/protocol/User;)V
public abstract fun startProfiler ()V
public abstract fun startSession ()V
public fun startTransaction (Lio/sentry/TransactionContext;)Lio/sentry/ITransaction;
public abstract fun startTransaction (Lio/sentry/TransactionContext;Lio/sentry/TransactionOptions;)Lio/sentry/ITransaction;
public fun startTransaction (Ljava/lang/String;Ljava/lang/String;)Lio/sentry/ITransaction;
public fun startTransaction (Ljava/lang/String;Ljava/lang/String;Lio/sentry/TransactionOptions;)Lio/sentry/ITransaction;
public abstract fun stopProfiler ()V
public abstract fun withIsolationScope (Lio/sentry/ScopeCallback;)V
public abstract fun withScope (Lio/sentry/ScopeCallback;)V
}
public abstract interface class io/sentry/IScopesStorage {
public abstract fun close ()V
public abstract fun get ()Lio/sentry/IScopes;
public abstract fun init ()V
public abstract fun set (Lio/sentry/IScopes;)Lio/sentry/ISentryLifecycleToken;
}
public abstract interface class io/sentry/ISentryClient {
public abstract fun captureCheckIn (Lio/sentry/CheckIn;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEnvelope (Lio/sentry/SentryEnvelope;)Lio/sentry/protocol/SentryId;
public abstract fun captureEnvelope (Lio/sentry/SentryEnvelope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
public abstract fun captureEvent (Lio/sentry/SentryEvent;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
public fun captureException (Ljava/lang/Throwable;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;)Lio/sentry/protocol/SentryId;
public fun captureMessage (Ljava/lang/String;Lio/sentry/SentryLevel;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
public abstract fun captureProfileChunk (Lio/sentry/ProfileChunk;Lio/sentry/IScope;)Lio/sentry/protocol/SentryId;
public abstract fun captureReplayEvent (Lio/sentry/SentryReplayEvent;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;
public fun captureSession (Lio/sentry/Session;)V
public abstract fun captureSession (Lio/sentry/Session;Lio/sentry/Hint;)V
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;)Lio/sentry/protocol/SentryId;
public fun captureTransaction (Lio/sentry/protocol/SentryTransaction;Lio/sentry/IScope;Lio/sentry/Hint;)Lio/sentry/protocol/SentryId;