Blogs
-
Associate Actions With Asynchronous Apex Jobs Using Transaction Finalizers (Beta) – Spring 21
Let’s explore Finalizers in Queueable Apex by considering a scenario. Let me present a scenario and elucidate how we handle such situations prior to Spring 21. In Queueable Apex, when attempting a callout to an external platform, an interruption in the network might result in a callout failure. How do we ensure that the callout…
-
Life Cycle Of A Lightning Web Components
Since the Lightning Web Component is constructed on a component-based framework, it is crucial for us to comprehend the life cycle events of a component to enhance the development of superior components. The Lightning Web Component is constructed upon a component-based framework, underscoring the importance of comprehending the life cycle events of a component to…
-
Export Functions And Variables From A Lightning Web Component
When you create a Lightning Web Component, it comes with some default code. Our Lightning Web Component extends ‘LightningElement,’ allowing us to leverage various functions and variables seamlessly without additional configuration. However, what if I desire a more streamlined Lightning Web Component with only specific variables and functions? Suppose I intend to use this LWC…