mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
15 lines
367 B
Java
15 lines
367 B
Java
|
package io.sentry;
|
||
|
|
||
|
import io.sentry.protocol.SentryTransaction;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface EventProcessor {
|
||
|
default SentryEvent process(SentryEvent sentryEvent, Hint hint) {
|
||
|
return sentryEvent;
|
||
|
}
|
||
|
|
||
|
default SentryTransaction process(SentryTransaction sentryTransaction, Hint hint) {
|
||
|
return sentryTransaction;
|
||
|
}
|
||
|
}
|