Skip to content

Event Flow

Charan Girijala edited this page Nov 7, 2024 · 1 revision

Flow of an Event from APEX to LWC

  1. LWC calls the callApexFromClient method in ClientInputHandler Class in Apex.

Entry point of rawLogData is in ClientInputHandler class. The requestData is received as a String and deserialized into Object of type requestSchema

  1. ProcessLogEntry.processLog(List<String>) is called and processing of log starts here.

  2. Lines are broadly categorized into 4 types

    • Profiling Info Line
    UtilityMethods.processApexProfilingCategories(line);
    • Standard Expression Line
    • Execute Anonymous Code Line
    • No Pattern Line (Extension of a Standard Exp Line)

Clone this wiki locally