Package io.sentry
Class DuplicateEventDetectionEventProcessor
- java.lang.Object
-
- io.sentry.DuplicateEventDetectionEventProcessor
-
- All Implemented Interfaces:
EventProcessor
public final class DuplicateEventDetectionEventProcessor extends java.lang.Object implements EventProcessor
Deduplicates events containing throwable that has been already processed.
-
-
Constructor Summary
Constructors Constructor Description DuplicateEventDetectionEventProcessor(@NotNull SentryOptions options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable SentryEvent
process(@NotNull SentryEvent event, @NotNull Hint hint)
May mutate or drop a SentryEvent-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.sentry.EventProcessor
process
-
-
-
-
Constructor Detail
-
DuplicateEventDetectionEventProcessor
public DuplicateEventDetectionEventProcessor(@NotNull @NotNull SentryOptions options)
-
-
Method Detail
-
process
@Nullable public @Nullable SentryEvent process(@NotNull @NotNull SentryEvent event, @NotNull @NotNull Hint hint)
Description copied from interface:EventProcessor
May mutate or drop a SentryEvent- Specified by:
process
in interfaceEventProcessor
- Parameters:
event
- the SentryEventhint
- the Hint- Returns:
- the event itself, a mutated SentryEvent or null
-
-