Package io.sentry

Interface CompositePerformanceCollector

All Known Implementing Classes:
DefaultCompositePerformanceCollector, NoOpCompositePerformanceCollector

public interface CompositePerformanceCollector
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    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
    start(@NotNull String id)
    Starts collecting performance data without span related data (e.g.
    stop(@NotNull ITransaction transaction)
    Stops collecting performance data and span related data (e.g.
    stop(@NotNull String id)
    Stops collecting performance data.
  • Method Details

    • start

      void start(@NotNull @NotNull ITransaction transaction)
      Starts collecting performance data and span related data (e.g. slow/frozen frames).
    • start

      void start(@NotNull @NotNull String id)
      Starts collecting performance data without span related data (e.g. slow/frozen frames).
    • onSpanStarted

      void onSpanStarted(@NotNull @NotNull ISpan span)
      Called whenever a new span (including the top level transaction) is started.
      Parameters:
      span - the span that was started
    • onSpanFinished

      void onSpanFinished(@NotNull @NotNull ISpan span)
      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

      @Nullable @Nullable List<PerformanceCollectionData> stop(@NotNull @NotNull String id)
      Stops collecting performance data.
    • close

      @Internal void close()
      Cancel the collector and stops it. Used on SDK close.