More Detail:https://developer.salesforce.com/docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_intro_overview.htm
Postman Tool Setup and Configuration Ø HOW TO INSTALL POSTMAN TOOL ON GOOGLE CHROME Ø MANAGE ENVIRONMENT SETUP Ø IMPORTING COLLECTION INTO POSTMAN Ø CONFIGURATION OF FIRST TAB TO GET SESSION ID Ø CONFIGURATION OF SECOND TAB TO GET WEB SERVICE API RESPONSE Ø FEW USEFUL LINKS How to install Postman Tool on Google Chrome: Step 1: Install Google Chrome If you haven’t done so yet, please install Google Chrome Step 2: Install the Postman extension for Chrome Open Google Chrome and install the Chrome Postman extension. Step 3: Install the Postman Interceptor extension for Chrome Install the Postman Interceptor extension. Step 4: Configure Postman Click on Apps Ø Click on the Postman icon Ø You will get access to all the Google Chrome installed extension. Ø Click on Postman ENVIRONM...
Future Method Queueable Apex 1. Future will never use to work on SObjects or object types. 2. When using the future method we cannot monitor the jobs which are in process. 3. The future method cannot be called inside the future or batch class. 4. The future method will never be queued. 5 . It is annotation based so we can use the same apex class to write the future method. Syntax: @future 6 . Future method supports only primitive datatypes. 1. Queueable Jobs can contain the member variable as SObjects or custom Apex Types. 2. When using queueable jobs it will make the AsyncApexJob which we can monitor like Scheduled jobs. 3. Queueable Apex can be called from the future and batch class. 4. Using Queueable Apex will chain up to queueable jobs and in Developer Edition it is only 5 Jobs. 5. It is a class which implements’ queueable interface. Syntax: public class CLASS_NAME implements Queueable{}. 6. Queueable supports both primit...
Comments
Post a Comment