Package io.sentry
Interface CompositePerformanceCollector
- All Known Implementing Classes:
DefaultCompositePerformanceCollector
,NoOpCompositePerformanceCollector
public interface CompositePerformanceCollector
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Cancel the collector and stops it.void
onSpanFinished
(@NotNull ISpan span) Called whenever a span (including the top level transaction) is finished.void
onSpanStarted
(@NotNull ISpan span) Called whenever a new span (including the top level transaction) is started.void
start
(@NotNull ITransaction transaction) Starts collecting performance data and span related data (e.g.void
Starts collecting performance data without span related data (e.g.@Nullable List<PerformanceCollectionData>
stop
(@NotNull ITransaction transaction) Stops collecting performance data and span related data (e.g.@Nullable List<PerformanceCollectionData>
Stops collecting performance data.
-
Method Details
-
start
Starts collecting performance data and span related data (e.g. slow/frozen frames). -
start
Starts collecting performance data without span related data (e.g. slow/frozen frames). -
onSpanStarted
Called whenever a new span (including the top level transaction) is started.- Parameters:
span
- the span that was started
-
onSpanFinished
Called whenever a span (including the top level transaction) is finished.- Parameters:
span
- the span that was finished
-
stop
@Nullable @Nullable List<PerformanceCollectionData> stop(@NotNull @NotNull ITransaction transaction) Stops collecting performance data and span related data (e.g. slow/frozen frames). -
stop
Stops collecting performance data. -
close
@Internal void close()Cancel the collector and stops it. Used on SDK close.
-