mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
16 lines
374 B
Java
16 lines
374 B
Java
package io.sentry;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface ITransactionProfiler {
|
|
void bindTransaction(ITransaction iTransaction);
|
|
|
|
void close();
|
|
|
|
boolean isRunning();
|
|
|
|
ProfilingTraceData onTransactionFinish(ITransaction iTransaction, List<PerformanceCollectionData> list, SentryOptions sentryOptions);
|
|
|
|
void start();
|
|
}
|