Interface IProfilingResultListener


  • public interface IProfilingResultListener
    1C:Enterprise Runtime Debug profiling results listener. Profiler results handlers must implement this interface to be added as listeners in IProfilingService.
    See Also:
    IProfilingService
    • Method Detail

      • resultsUpdated

        void resultsUpdated​(IProfilingResult results)
        Notifies listener about new profiling results. When profiling multiple debug targets, results for each target are sent one after another. Called by IProfilingService when new profiling results are available.
        Parameters:
        results - ProfilingResult with new profiling results. Cannot be null.
      • resultsCleared

        void resultsCleared()
        Notifies listeners about clearing results cache.
      • resultRenamed

        void resultRenamed​(IProfilingResult result,
                           String oldName)
        Notifies listener about renaming profiling result.
        Parameters:
        result - Result that was renamed. Never null.
        oldName - The old name of the renamed result. Cannot be null.