Asynchronous Apex

|
| By Rushali kashyap

Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations

How to add multiple modules and controllers in angularjs

| By Webner

If we have multiple modules and controller in single page i.e. : <div id=”id1” ng-app=”App1″ ng-controller=”productController”> </div> <div id=”id2” ng-app=”app2″ ng-controller=”orderController”> </div> We need to add angular.bootstrap after adding the controllers: var App1 = angular.module(App1, []); mySampleApp.controller(productController, function($scope) {}); var

ASP .NET | InvalidOperationException: An asynchronous module or handler completed while an asynchronous operation was still pending

| By Webner

[InvalidOperationException: An asynchronous module or handler completed while an asynchronous operation was still pending] Error : Asp.net Web API – parent method executes itself before the child asynchronous method is completed. Description : I have a public method that calls