Live Coding Channel
- Barcode Component in Lightning
- Login Flow
- Exploring Winter 16 features with Examples
- Spell checker in Custom Visualforce Page
- How to store Secrets in Salesforce
New Youtube Channel – Jitendra Zaa
- Environment Hub to manage multiple Salesforce instances
- Salesforce Wave Analytics Cloud basics
- Salesforce Wave Analytics Cloud HandsOn – Stacked Bar Chart
- Salesforce Wave Analytics Cloud HandsOn – Compare and Data Table, Focus, Export chart as Image
- Export DataSets in Salesforce Analytics Cloud
- Basics of Salesforce flow in 15 minutes
- Creating lookup field in Flow
- Mass update records in Flow
- Create parent child relationship using External Id and Upsert Operation in Salesforce Dataloader
- Salesforce Dataloader Settings and Upsert Operation
- Extract Data from Salesforce using Dataloader and save it on FTP using ANT
- Salesforce automated testing – Selenium Part 2
- Getting started with Selenium and Salesforce – Part 1
- Getting started with Git and Bitbucket in 5 minutes with TortoiseGit
- How to use CCTray with Salesforce and Jenkins
- Continuous integration in Salesforce Using Jenkins and Git in 20 minutes
- Auto generate Package.xml using ANT and Metadata API
- HTML5 Based Drag And Drop Component for Salesforce
- Creating dependent picklist in Salesforce flow using custom Metadata
- Salesforce Lightning – Wikipedia Search Component
Old Youtube Channel – ilovenagpur
- Salesforce Query Builder in Node.js, AngularJs, Salesforce REST API, Heroku
- Deploy Node.js application in Heroku using Eclipse
- Step by step guide to Setup Federated Authentication in Salesforce – SSO
- Salesforce REST API Playground
- How to use GIT with Salesforce in Force.com IDE
- Live Agent Setup in Salesforce
- Configuring Salesforce for Outlook
- Email To Case Agent in Salesforce
- Test Simulator
- Extended Mail Merge Template in Salesforce
- Force Util – Salesforce Organization Comparison
- Example of Streaming API in Salesforce
Hi Jitendra,
I use git via the command line to deploy my code from my personal sandbox to the Dev Int. So my issue is that while i am working on the code in my sandbox ,other developers do make deployments to Dev int which results in me not having the latest code from the Dev int . On my desktop i do have the clone of the original develop branch. So i make sure i create a separate branch and fetch the code from my sandbox and need to merge with the Remote repository.
How can i avoid the overwritting of other developers code on Dev int and deploy only the files i have changed to the Dev Int ?
Code a callout to use continuation
Make a callout asynchronous, to avoid the concurrent long-running transaction limit. Edit an existing class to use continuation with a callback method to check for a response before continuing.
To get started:
Load the unmanaged package, which contains an unedited Apex class. If you’re using a Trailhead Playground, this article shows you how to find your username and reset your password. If you have trouble installing the package, follow the steps in this article.
In Setup, find the Apex class CalloutController
Edit the CalloutController class:
Replace the existing callout code with a new continuation con, which calls a callback handler named processResponse
Add the callback handler processResponse() method to wait for the response from the server
I cannot solve this challange. Could i please get some help?