mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
17 lines
374 B
Java
17 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();
|
||
|
}
|